hippofish/packages/backend/migration/1695334243217-add-post-lang.js

14 lines
316 B
JavaScript
Raw Normal View History

export class AddPostLang1695334243217 {
2023-09-22 05:21:15 +02:00
name = "AddPostLang1695334243217";
2023-09-22 05:21:15 +02:00
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE IF EXISTS "note" ADD "lang" character varying(10)`,
2023-09-22 05:21:15 +02:00
);
}
2023-09-22 05:21:15 +02:00
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE IF EXISTS "note" DROP COLUMN "lang"`);
2023-09-22 05:21:15 +02:00
}
}