12 lines
409 B
JavaScript
12 lines
409 B
JavaScript
|
export class FeatAutoRejectFollowRequest1697683129062 {
|
||
|
name = 'FeatAutoRejectFollowRequest1697683129062'
|
||
|
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "autoRejectFollowRequest" boolean NOT NULL DEFAULT false`);
|
||
|
}
|
||
|
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "autoRejectFollowRequest"`);
|
||
|
}
|
||
|
}
|