mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 04:59:06 +01:00
17 lines
536 B
TypeScript
17 lines
536 B
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
export class userPublicReactions1634486652000 implements MigrationInterface {
|
|
constructor() {
|
|
this.name = "userPublicReactions1634486652000";
|
|
}
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "user_profile" ADD "publicReactions" boolean NOT NULL DEFAULT false`,
|
|
);
|
|
}
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "user_profile" DROP COLUMN "publicReactions"`,
|
|
);
|
|
}
|
|
}
|