(fix) sql script fix (strip traling ;)

This commit is contained in:
Ludovic Marcotte
2018-09-21 13:06:39 -04:00
parent 3d9fe30373
commit fc3224b802
+3 -3
View File
@@ -9,8 +9,8 @@ CREATE TABLE @{tableName} (
c_type SMALLINT NOT NULL,
c_creationdate INT NOT NULL,
c_lastmodified INT NOT NULL,
c_version INT NOT NULL DEFAULT 0,
c_deleted SMALLINT NOT NULL DEFAULT 0,
c_version INT DEFAULT 0 NOT NULL,
c_deleted INT DEFAULT 0 NOT NULL,
c_content CLOB,
CONSTRAINT @{tableName}_pkey PRIMARY KEY (c_uid, c_path)
);
)