iceshrimp-161sh/packages/backend/src/migration/1684206886988-remove-showTimelineReplies.ts

17 lines
516 B
TypeScript
Raw Normal View History

import { MigrationInterface, QueryRunner } from "typeorm";
export class RemoveShowTimelineReplies1684206886988 implements MigrationInterface {
name = "RemoveShowTimelineReplies1684206886988";
async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "user" DROP COLUMN "showTimelineReplies"`,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "user" ADD "showTimelineReplies" boolean NOT NULL DEFAULT false`,
);
}
}