* Migrate standard objects * Add migrations * fix relation * fix: register RelationMetadataType enum * fix: correctly fix null relation --------- Co-authored-by: corentin <corentin@twenty.com> Co-authored-by: Jérémy Magrin <jeremy.magrin@gmail.com>
14 lines
302 B
TypeScript
14 lines
302 B
TypeScript
import { TenantMigrationTableAction } from 'src/metadata/tenant-migration/tenant-migration.entity';
|
|
|
|
export const addPipelineStepTable: TenantMigrationTableAction[] = [
|
|
{
|
|
name: 'pipelineStep',
|
|
action: 'create',
|
|
},
|
|
{
|
|
name: 'pipelineStep',
|
|
action: 'alter',
|
|
columns: [],
|
|
},
|
|
];
|