jormungandr-bite/packages/backend/migration/1637320813000-forwarded-report.js

16 lines
357 B
JavaScript
Raw Normal View History

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