mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-06 00:45:09 +00:00
Added missing files for OCI support
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
--
|
||||
-- (C) 2018 Inverse inc.
|
||||
--
|
||||
|
||||
CREATE TABLE @{tableName} (
|
||||
c_uid VARCHAR(255) NOT NULL,
|
||||
c_path VARCHAR(255) NOT NULL,
|
||||
c_parent_path VARCHAR(255),
|
||||
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_content CLOB,
|
||||
CONSTRAINT @{tableName}_pkey PRIMARY KEY (c_uid, c_path)
|
||||
);
|
||||
Reference in New Issue
Block a user