1
0
Fork 1
mirror of https://example.com synced 2024-11-23 01:46:38 +09:00
firefish/packages/backend/migration/1637320813000-forwarded-report.js
2023-07-20 04:17:05 +09:00

15 lines
357 B
JavaScript

export class forwardedReport1637320813000 {
name = "forwardedReport1637320813000";
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE "abuse_user_report" ADD "forwarded" boolean NOT NULL DEFAULT false`,
);
}
async down(queryRunner) {
await queryRunner.query(
`ALTER TABLE "abuse_user_report" DROP COLUMN "forwarded"`,
);
}
}