calckey/packages/backend/migration/1637320813000-forwarded-rep...

16 lines
357 B
JavaScript
Raw Normal View History

2022-02-28 15:07:03 +00:00
export class forwardedReport1637320813000 {
2023-04-07 01:56:46 +00:00
name = "forwardedReport1637320813000";
async up(queryRunner) {
2023-04-07 01:56:46 +00:00
await queryRunner.query(
`ALTER TABLE "abuse_user_report" ADD "forwarded" boolean NOT NULL DEFAULT false`,
);
}
async down(queryRunner) {
2023-04-07 01:56:46 +00:00
await queryRunner.query(
`ALTER TABLE "abuse_user_report" DROP COLUMN "forwarded"`,
);
}
2023-04-07 01:56:46 +00:00
}