import { MigrationInterface, QueryRunner } from "typeorm"; export class msNocascade1653746497237 implements MigrationInterface { name = 'msNocascade1653746497237' public async up(queryRunner: QueryRunner): Promise { await queryRunner.query(`CREATE TABLE \`jackson_store\` (\`key\` varchar(250) NOT NULL, \`value\` text NOT NULL, \`iv\` varchar(64) NULL, \`tag\` varchar(64) NULL, \`createdAt\` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, \`modifiedAt\` timestamp NULL, PRIMARY KEY (\`key\`)) ENGINE=InnoDB`); await queryRunner.query(`CREATE TABLE \`jackson_ttl\` (\`key\` varchar(250) NOT NULL, \`expiresAt\` bigint NOT NULL, INDEX \`_jackson_ttl_expires_at\` (\`expiresAt\`), PRIMARY KEY (\`key\`)) ENGINE=InnoDB`); await queryRunner.query(`CREATE TABLE \`jackson_index\` (\`id\` int NOT NULL AUTO_INCREMENT, \`key\` varchar(250) NOT NULL, \`storeKey\` varchar(250) NOT NULL, INDEX \`_jackson_index_key\` (\`key\`), INDEX \`_jackson_index_store\` (\`storeKey\`), INDEX \`_jackson_index_key_store\` (\`key\`, \`storeKey\`), PRIMARY KEY (\`id\`)) ENGINE=InnoDB`); } public async down(queryRunner: QueryRunner): Promise { await queryRunner.query(`DROP INDEX \`_jackson_index_key_store\` ON \`jackson_index\``); await queryRunner.query(`DROP INDEX \`_jackson_index_store\` ON \`jackson_index\``); await queryRunner.query(`DROP INDEX \`_jackson_index_key\` ON \`jackson_index\``); await queryRunner.query(`DROP TABLE \`jackson_index\``); await queryRunner.query(`DROP INDEX \`_jackson_ttl_expires_at\` ON \`jackson_ttl\``); await queryRunner.query(`DROP TABLE \`jackson_ttl\``); await queryRunner.query(`DROP TABLE \`jackson_store\``); } }