iceshrimp/packages/backend/src/migration/1604821689616-delete-auto-watch.ts

17 lines
516 B
TypeScript
Raw Normal View History

import { MigrationInterface, QueryRunner } from "typeorm";
export class deleteAutoWatch1604821689616 implements MigrationInterface {
2023-04-07 03:56:46 +02:00
constructor() {
this.name = "deleteAutoWatch1604821689616";
}
async up(queryRunner: QueryRunner): Promise<void> {
2023-04-07 03:56:46 +02:00
await queryRunner.query(
`ALTER TABLE "user_profile" DROP COLUMN "autoWatch"`,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
2023-04-07 03:56:46 +02:00
await queryRunner.query(
`ALTER TABLE "user_profile" ADD "autoWatch" boolean NOT NULL DEFAULT false`,
);
}
2021-11-11 18:02:25 +01:00
}