1
0
Fork 1
mirror of https://example.com synced 2024-11-23 01:26:39 +09:00
firefish/packages/backend/migration/1668828368510PageDraft.js
2023-07-20 04:17:05 +09:00

10 lines
267 B
JavaScript

export class Page1668828368510 {
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE "page" ADD "isPublic" boolean NOT NULL DEFAULT true`,
);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "page" DROP COLUMN "isPublic"`);
}
}