1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-04 17:00:17 -06:00
paricafe/packages/backend/migration/1579270193251-v12-2.js

14 lines
406 B
JavaScript
Raw Normal View History

2022-02-28 09:07:03 -06:00
export class v1221579270193251 {
2021-11-11 11:02:25 -06:00
constructor() {
this.name = 'v1221579270193251';
}
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "announcement_read" ADD "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL`, undefined);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "announcement_read" DROP COLUMN "createdAt"`, undefined);
}
}