Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
export class RecommendedTimeline1659042130648 {
|
||||
name = "RecommendedTimeline1659042130648";
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" ADD "disableRecommendedTimeline" boolean NOT NULL DEFAULT true`);
|
||||
await queryRunner.query(`ALTER TABLE "meta" ADD "recommendedInstances" character varying(256) array NOT NULL DEFAULT '{}'::varchar[]`);
|
||||
}
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "disableRecommendedTimeline"`);
|
||||
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "recommendedInstances"`);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user