2024-06-15 12:36:55 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: marie and other Sharkey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-10-22 13:16:30 +02:00
|
|
|
export class AlterNoteEdit1697970083000 {
|
|
|
|
name = "AlterNoteEdit1697970083000";
|
|
|
|
|
|
|
|
async up(queryRunner) {
|
|
|
|
await queryRunner.query(`ALTER TABLE "note_edit" RENAME COLUMN "text" TO "newText"`);
|
|
|
|
await queryRunner.query(`ALTER TABLE "note_edit" ADD COLUMN "oldText" text`);
|
|
|
|
}
|
|
|
|
|
|
|
|
async down(queryRunner) {
|
|
|
|
await queryRunner.query(`ALTER TABLE "note_edit" RENAME COLUMN "newText" TO "text"`);
|
|
|
|
await queryRunner.query(`ALTER TABLE "note_edit" DROP COLUMN "oldText"`);
|
|
|
|
}
|
|
|
|
}
|