diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-01-30 05:56:14 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-01-30 05:56:14 +0900 |
| commit | 96648b651eaab8b37dc809ec48acb09bce834ea1 (patch) | |
| tree | 9eeaa7d70e9c13c48b75b58e73290e342f6d5a92 /migration | |
| parent | Fix bug (diff) | |
| download | sharkey-96648b651eaab8b37dc809ec48acb09bce834ea1.tar.gz sharkey-96648b651eaab8b37dc809ec48acb09bce834ea1.tar.bz2 sharkey-96648b651eaab8b37dc809ec48acb09bce834ea1.zip | |
isMarkedAsClosed --> isSuspended
Diffstat (limited to 'migration')
| -rw-r--r-- | migration/1580331224276-v12-11.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/migration/1580331224276-v12-11.ts b/migration/1580331224276-v12-11.ts new file mode 100644 index 0000000000..30794b80e3 --- /dev/null +++ b/migration/1580331224276-v12-11.ts @@ -0,0 +1,18 @@ +import {MigrationInterface, QueryRunner} from "typeorm"; + +export class v12111580331224276 implements MigrationInterface { + name = 'v12111580331224276' + + public async up(queryRunner: QueryRunner): Promise<any> { + await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "isMarkedAsClosed"`, undefined); + await queryRunner.query(`ALTER TABLE "instance" ADD "isSuspended" boolean NOT NULL DEFAULT false`, undefined); + await queryRunner.query(`CREATE INDEX "IDX_34500da2e38ac393f7bb6b299c" ON "instance" ("isSuspended") `, undefined); + } + + public async down(queryRunner: QueryRunner): Promise<any> { + await queryRunner.query(`DROP INDEX "IDX_34500da2e38ac393f7bb6b299c"`, undefined); + await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "isSuspended"`, undefined); + await queryRunner.query(`ALTER TABLE "instance" ADD "isMarkedAsClosed" boolean NOT NULL DEFAULT false`, undefined); + } + +} |