CCM NG/ccm-core: Fixed typos in database migration scripts

git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4385 8810af33-2d31-482b-a856-94f89814c4df
pull/2/head
jensp 2016-10-17 16:58:54 +00:00
parent 42e18ee8cb
commit 71c38c440a
2 changed files with 2 additions and 2 deletions

View File

@ -6,5 +6,5 @@ alter table CCM_CORE.WORKFLOWS
alter table CCM_CORE.WORKFLOWS
add constraint FKol71r1t83h0qe65gglq43far2
foreign key (template_id)
foreign key (TEMPLATE_ID)
references CCM_CORE.WORKFLOW_TEMPLATES;

View File

@ -1,6 +1,6 @@
create table CCM_CORE.ROLE_DESCRIPTIONS (
ROLE_ID bigint not null,
LOCALIZED_VALUE longvarchar,
LOCALIZED_VALUE text,
LOCALE varchar(255) not null,
primary key (ROLE_ID, LOCALE)
);