mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 17:23:09 +02:00
11 lines
322 B
JavaScript
11 lines
322 B
JavaScript
export class OldDateNoteEdit1697970083001 {
|
|
name = "OldDateNoteEdit1697970083001";
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "note_edit" ADD COLUMN "oldDate" TIMESTAMP WITH TIME ZONE`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "note_edit" DROP COLUMN "oldDate"`);
|
|
}
|
|
}
|