mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-20 10:55:25 +00:00
(fix) sql script fix (strip traling ;)
This commit is contained in:
@@ -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)
|
||||
);
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user