parent
037837b551
commit
0e4a111f81
1714 changed files with 20803 additions and 11751 deletions
16
packages/backend/migration/1636197624383-ff-visibility.js
Normal file
16
packages/backend/migration/1636197624383-ff-visibility.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
class ffVisibility1636197624383 {
|
||||
constructor() {
|
||||
this.name = 'ffVisibility1636197624383';
|
||||
}
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`CREATE TYPE "public"."user_profile_ffvisibility_enum" AS ENUM('public', 'followers', 'private')`);
|
||||
await queryRunner.query(`ALTER TABLE "user_profile" ADD "ffVisibility" "public"."user_profile_ffvisibility_enum" NOT NULL DEFAULT 'public'`);
|
||||
}
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "ffVisibility"`);
|
||||
await queryRunner.query(`DROP TYPE "public"."user_profile_ffvisibility_enum"`);
|
||||
}
|
||||
}
|
||||
exports.ffVisibility1636197624383 = ffVisibility1636197624383;
|
Loading…
Add table
Add a link
Reference in a new issue