Skip to content

Commit

Permalink
EZEE-2855: Flex Workflow moved to Editorial Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nattfarinn committed Dec 6, 2019
1 parent 5a15f30 commit b331a88
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 34 deletions.
32 changes: 0 additions & 32 deletions Resources/config/storage/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,38 +14,6 @@ tables:
user_id: { type: integer, nullable: false }
publication_date: { type: integer, nullable: false }
url_root: { type: string, nullable: false, length: 255 }
ezflexworkflow:
indexes:
message_id: { fields: [message_id] }
content_owner_id: { fields: [content_owner_id] }
new_owner_id: { fields: [new_owner_id] }
ezflexworkflow_content_id: { fields: [content_id] }
previous_owner_id: { fields: [previous_owner_id] }
id:
id: { type: integer, nullable: false, options: { autoincrement: true } }
fields:
message_id: { type: integer, nullable: true }
content_id: { type: integer, nullable: false }
content_owner_id: { type: integer, nullable: false }
previous_owner_id: { type: integer, nullable: false }
new_owner_id: { type: integer, nullable: false }
status: { type: integer, nullable: false, options: { default: '0' } }
created: { type: integer, nullable: false }
version: { type: integer, nullable: false }
content_type_id: { type: integer, nullable: false }
ezflexworkflow_message:
indexes:
ezflexworkflow_message_content_id: { fields: [content_id] }
receiver_id: { fields: [receiver_id] }
sender_id: { fields: [sender_id] }
id:
id: { type: integer, nullable: false, options: { autoincrement: true } }
fields:
content_id: { type: integer, nullable: false }
message: { type: blob, nullable: true, length: 65535 }
sender_id: { type: integer, nullable: false }
receiver_id: { type: integer, nullable: false }
created: { type: integer, nullable: false }
ezform_field_attributes:
id:
id: { type: integer, nullable: false, options: { autoincrement: true } }
Expand Down
2 changes: 0 additions & 2 deletions Resources/sql/postgresql/cleandata.sql
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ SELECT SETVAL('ezdatebasedpublisher_scheduled_version_id_seq', COALESCE(MAX(id),
SELECT SETVAL('ezeditorialworkflow_markings_id_seq', COALESCE(MAX(id), 1)) FROM ezeditorialworkflow_markings;
SELECT SETVAL('ezeditorialworkflow_transitions_id_seq', COALESCE(MAX(id), 1)) FROM ezeditorialworkflow_transitions;
SELECT SETVAL('ezeditorialworkflow_workflows_id_seq', COALESCE(MAX(id), 1)) FROM ezeditorialworkflow_workflows;
SELECT SETVAL('ezflexworkflow_id_seq', COALESCE(MAX(id), 1)) FROM ezflexworkflow;
SELECT SETVAL('ezflexworkflow_message_id_seq', COALESCE(MAX(id), 1)) FROM ezflexworkflow_message;
SELECT SETVAL('ezform_field_attributes_id_seq', COALESCE(MAX(id), 1)) FROM ezform_field_attributes;
SELECT SETVAL('ezform_field_validators_id_seq', COALESCE(MAX(id), 1)) FROM ezform_field_validators;
SELECT SETVAL('ezform_fields_id_seq', COALESCE(MAX(id), 1)) FROM ezform_fields;
Expand Down

0 comments on commit b331a88

Please sign in to comment.