Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong type #13196 #13406

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dotCMS/src/main/resources/oracle.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2226,7 +2226,7 @@ create table workflow_action(
icon varchar2(255) default 'defaultWfIcon',
show_on varchar2(255) default 'LOCKED,UNLOCKED',
use_role_hierarchy_assign number(1,0) default 0,
scheme_id VARCHAR(36) NOT NULL
scheme_id varchar2(36) NOT NULL
);

CREATE TABLE workflow_action_step ( action_id varchar2(36) NOT NULL, step_id varchar2(36) NOT NULL, action_order number(10,0) default 0, CONSTRAINT pk_workflow_action_step PRIMARY KEY (action_id, step_id) );
Expand Down