1
0
Fork 1
mirror of https://example.com synced 2024-11-23 04:46:40 +09:00
firefish/packages/backend/migration/1646387162108-mute-expires-at.js
2023-07-20 04:17:05 +09:00

19 lines
519 B
JavaScript

export class muteExpiresAt1646387162108 {
name = "muteExpiresAt1646387162108";
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE "muting" ADD "expiresAt" TIMESTAMP WITH TIME ZONE`,
);
await queryRunner.query(
`CREATE INDEX "IDX_c1fd1c3dfb0627aa36c253fd14" ON "muting" ("expiresAt") `,
);
}
async down(queryRunner) {
await queryRunner.query(
`DROP INDEX "public"."IDX_c1fd1c3dfb0627aa36c253fd14"`,
);
await queryRunner.query(`ALTER TABLE "muting" DROP COLUMN "expiresAt"`);
}
}