mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-15 06:27:34 -07:00
11 lines
589 B
JavaScript
11 lines
589 B
JavaScript
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"`);
|
|
}
|
|
}
|