import { MigrationInterface, QueryRunner, Table, TableForeignKey } from 'typeorm'; export class AddRefreshToken1637631042877 implements MigrationInterface { public async up(queryRunner: QueryRunner): Promise { await queryRunner.createTable( new Table({ name: 'refresh_token', columns: [ { name: 'id', type: 'int', isPrimary: true, isGenerated: true, }, { name: 'userId', type: 'int', isNullable: false, }, ], }), ); await queryRunner.createForeignKey( 'refresh_token', new TableForeignKey({ columnNames: ['userId'], referencedColumnNames: ['id'], referencedTableName: 'user', onDelete: 'CASCADE', }), ); } public async down(queryRunner: QueryRunner): Promise { await queryRunner.dropTable('refresh_token'); } }