From 8392f6dabcfd605b483ce6f541644f17134d3523 Mon Sep 17 00:00:00 2001 From: Nattfarinn Date: Fri, 22 Nov 2019 08:27:36 +0100 Subject: [PATCH] fix: Move schema to Workflow bundle --- Resources/config/storage/schema.yaml | 35 ---------------------------- 1 file changed, 35 deletions(-) diff --git a/Resources/config/storage/schema.yaml b/Resources/config/storage/schema.yaml index a391f71..8717e75 100644 --- a/Resources/config/storage/schema.yaml +++ b/Resources/config/storage/schema.yaml @@ -14,41 +14,6 @@ tables: user_id: { type: integer, nullable: false } publication_date: { type: integer, nullable: false } url_root: { type: string, nullable: false, length: 255 } - ezeditorialworkflow_workflows: - indexes: - idx_workflow_id: { fields: [id] } - initial_owner_id: { fields: [initial_owner_id] } - id: - id: { type: integer, nullable: false, options: { autoincrement: true } } - fields: - content_id: { type: integer, nullable: false } - version_no: { type: integer, nullable: false } - workflow_name: { type: string, nullable: false, length: 255, options: { default: '' } } - initial_owner_id: { type: integer, nullable: true } - start_date: { type: integer, nullable: true } - ezeditorialworkflow_markings: - indexes: - fk_workflow_id_markings: { fields: [workflow_id] } - id: - id: { type: integer, nullable: false, options: { autoincrement: true } } - fields: - workflow_id: { type: integer, nullable: false } - name: { type: string, nullable: false, length: 255, options: { default: '' } } - foreignKeys: - fk_ezeditorialworkflow_markings_workflow_id: { fields: [workflow_id], foreignTable: ezeditorialworkflow_workflows, foreignFields: [id], options: { onDelete: CASCADE, onUpdate: null } } - ezeditorialworkflow_transitions: - indexes: - fk_workflow_id_transitions: { fields: [workflow_id] } - id: - id: { type: integer, nullable: false, options: { autoincrement: true } } - fields: - workflow_id: { type: integer, nullable: false } - name: { type: string, nullable: false, length: 255, options: { default: '' } } - timestamp: { type: integer, nullable: false } - user_id: { type: integer, nullable: true } - comment: { type: text, nullable: true, length: 65535 } - foreignKeys: - fk_ezeditorialworkflow_transitions_workflow_id: { fields: [workflow_id], foreignTable: ezeditorialworkflow_workflows, foreignFields: [id], options: { onDelete: CASCADE, onUpdate: null } } ezform_field_attributes: id: id: { type: integer, nullable: false, options: { autoincrement: true } }