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