mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-04-13 09:44:40 +00:00
12 lines
328 B
JavaScript
12 lines
328 B
JavaScript
![]() |
export class AddUserRejectQuotes1739671777344 {
|
||
|
name = 'AddUserRejectQuotes1739671777344'
|
||
|
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "user" ADD "rejectQuotes" boolean NOT NULL DEFAULT false`);
|
||
|
}
|
||
|
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "rejectQuotes"`);
|
||
|
}
|
||
|
}
|