forked from FoundKeyGang/FoundKey
14 lines
531 B
TypeScript
14 lines
531 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class userPublicReactions1634486652000 implements MigrationInterface {
|
|
name = 'userPublicReactions1634486652000'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "publicReactions" boolean NOT NULL DEFAULT false`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "publicReactions"`);
|
|
}
|
|
|
|
}
|