import { MigrationInterface, QueryRunner } from "typeorm"; export class deleteAutoWatch1604821689616 implements MigrationInterface { constructor() { this.name = "deleteAutoWatch1604821689616"; } async up(queryRunner: QueryRunner): Promise { await queryRunner.query( `ALTER TABLE "user_profile" DROP COLUMN "autoWatch"`, ); } async down(queryRunner: QueryRunner): Promise { await queryRunner.query( `ALTER TABLE "user_profile" ADD "autoWatch" boolean NOT NULL DEFAULT false`, ); } }