import {MigrationInterface, QueryRunner} from "typeorm"; export class isUserDeleted1629512953000 implements MigrationInterface { name = 'isUserDeleted1629512953000' public async up(queryRunner: QueryRunner): Promise { await queryRunner.query(`ALTER TABLE "user" ADD "isDeleted" boolean NOT NULL DEFAULT false`); await queryRunner.query(`COMMENT ON COLUMN "user"."isDeleted" IS 'Whether the User is deleted.'`); } public async down(queryRunner: QueryRunner): Promise { await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "isDeleted"`); } }