Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | import { MigrationInterface, QueryRunner } from "typeorm"; export class Scenarios1626135664298 implements MigrationInterface { public async up(queryRunner: QueryRunner): Promise<void> { // eslint-disable-next-line no-secrets/no-secrets await queryRunner.query(` CREATE TABLE scenarios ( id int(11) NOT NULL, name varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, pack varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL NOT NULL, PRIMARY KEY(id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; `); await queryRunner.query(` ALTER TABLE scenarios ADD CONSTRAINT fk_packs_scenarios FOREIGN KEY (pack) REFERENCES packs(code) ON DELETE NO ACTION ON UPDATE NO ACTION `); await queryRunner.query(` CREATE TABLE scenarios_modular_sets ( scenario int(11) NOT NULL, modular_set int(11) NOT NULL, PRIMARY KEY(scenario, modular_set) ) ENGINE=InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci; `); await queryRunner.query(` ALTER TABLE scenarios_modular_sets ADD CONSTRAINT fk_scenarios_modular_sets_scenarios FOREIGN KEY (scenario) REFERENCES scenarios(id) ON DELETE NO ACTION ON UPDATE NO ACTION `); await queryRunner.query(` ALTER TABLE scenarios_modular_sets ADD CONSTRAINT fk_scenarios_modular_sets_modular_sets FOREIGN KEY (modular_set) REFERENCES modular_sets(id) ON DELETE NO ACTION ON UPDATE NO ACTION `); } public async down(queryRunner: QueryRunner): Promise<void> { await queryRunner.query(` DROP TABLE scenarios `); } } |