1
0
Fork 1
mirror of https://example.com synced 2024-11-23 05:36:39 +09:00
firefish/packages/backend/migration/1629512953000-user-is-deleted.js
2023-07-20 04:17:05 +09:00

16 lines
452 B
JavaScript

export class isUserDeleted1629512953000 {
constructor() {
this.name = "isUserDeleted1629512953000";
}
async up(queryRunner) {
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.'`,
);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "isDeleted"`);
}
}