2022-11-19 03:26:45 +00:00
|
|
|
export class Page1668828368510 {
|
|
|
|
async up(queryRunner) {
|
2023-04-07 01:56:46 +00:00
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "page" ADD "isPublic" boolean NOT NULL DEFAULT true`,
|
|
|
|
);
|
2022-11-19 03:26:45 +00:00
|
|
|
}
|
|
|
|
async down(queryRunner) {
|
2023-04-07 01:56:46 +00:00
|
|
|
await queryRunner.query(`ALTER TABLE "page" DROP COLUMN "isPublic"`);
|
2022-11-19 03:26:45 +00:00
|
|
|
}
|
|
|
|
}
|