Skip to content

Commit

Permalink
Merge pull request #59 from ezsystems/ezee-2921
Browse files Browse the repository at this point in the history
EZEE-2921: Moved Editorial Workflow schema from installer to Bundle
  • Loading branch information
Nattfarinn authored Dec 6, 2019
2 parents 386d1ac + c286812 commit 5a15f30
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions Resources/config/storage/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 } }
ezflexworkflow:
indexes:
message_id: { fields: [message_id] }
Expand Down

0 comments on commit 5a15f30

Please sign in to comment.