iceshrimp/packages/backend/src/migration/1582210532752-antenna-exclude.ts

19 lines
541 B
TypeScript

import { MigrationInterface, QueryRunner } from "typeorm";
export class antennaExclude1582210532752 implements MigrationInterface {
constructor() {
this.name = "antennaExclude1582210532752";
}
async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "antenna" ADD "excludeKeywords" jsonb NOT NULL DEFAULT '[]'`,
undefined,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "antenna" DROP COLUMN "excludeKeywords"`,
undefined,
);
}
}