rudeshark.net/packages/backend/migration/1695334243217-add-post-lang.js

14 lines
296 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 "note" ADD "lang" character varying(10)`,
);
}
2023-09-22 05:21:15 +02:00
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "note" DROP COLUMN "lang"`);
}
}