fixes: hide and show pages

This commit is contained in:
arpitnath 2023-09-25 00:28:46 +05:30
parent 1b53f7284b
commit 57f40813bd
2 changed files with 8 additions and 0 deletions

View file

@ -32,6 +32,11 @@ export class CreatePageTable1691004576333 implements MigrationInterface {
type: 'boolean',
isNullable: true,
},
{
name: 'hidden',
type: 'boolean',
isNullable: true,
},
{
name: 'app_version_id',
type: 'uuid',

View file

@ -19,6 +19,9 @@ export class Page {
@Column()
disabled: boolean;
@Column()
hidden: boolean;
@Column({ name: 'app_version_id' })
appVersionId: string;