import { TenantMigrationTableAction, TenantMigrationColumnActionType, } from 'src/database/typeorm/metadata/entities/tenant-migration.entity'; export const addViewTable: TenantMigrationTableAction[] = [ { name: 'view', action: 'create', }, { name: 'view', action: 'alter', columns: [ { columnName: 'name', columnType: 'varchar', action: TenantMigrationColumnActionType.CREATE, }, { columnName: 'objectMetadataId', columnType: 'varchar', action: TenantMigrationColumnActionType.CREATE, }, { columnName: 'type', columnType: 'varchar', action: TenantMigrationColumnActionType.CREATE, }, ], }, ];