mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
fixes: hide and show pages
This commit is contained in:
parent
1b53f7284b
commit
57f40813bd
2 changed files with 8 additions and 0 deletions
|
|
@ -32,6 +32,11 @@ export class CreatePageTable1691004576333 implements MigrationInterface {
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
isNullable: true,
|
isNullable: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'hidden',
|
||||||
|
type: 'boolean',
|
||||||
|
isNullable: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'app_version_id',
|
name: 'app_version_id',
|
||||||
type: 'uuid',
|
type: 'uuid',
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,9 @@ export class Page {
|
||||||
@Column()
|
@Column()
|
||||||
disabled: boolean;
|
disabled: boolean;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
hidden: boolean;
|
||||||
|
|
||||||
@Column({ name: 'app_version_id' })
|
@Column({ name: 'app_version_id' })
|
||||||
appVersionId: string;
|
appVersionId: string;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue