Tiny typo in 4.0.1 HSQLDB script
--------------------------------
Key: ROL-1819
URL: https://issues.apache.org/jira/browse/ROL-1819
Project: Roller
Issue Type: Bug
Components: Database Access & Data Model
Affects Versions: 4.0.1
Reporter: Jerome Pramondon
Assignee: Roller Unassigned
Priority: Minor
When creating the DB model using HSQLDB, the script contains a small inversion.
The 'webpage' table has an 'action' column that is created this way :
action varchar(16) not null default 'custom'
This causes an execution problem that can be easily fixed by replacing this
line by :
action varchar(16) default 'custom' not null
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.