mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 04:59:06 +01:00
17 lines
548 B
TypeScript
17 lines
548 B
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
export class whetherPushNotifyToSendReadMessage1669138716634 implements MigrationInterface {
|
|
name = "whetherPushNotifyToSendReadMessage1669138716634";
|
|
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "sw_subscription" ADD "sendReadMessage" boolean NOT NULL DEFAULT false`,
|
|
);
|
|
}
|
|
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "sw_subscription" DROP COLUMN "sendReadMessage"`,
|
|
);
|
|
}
|
|
}
|