sogo/UI/MainUI/OCSCacheFolder-oracle.sql

17 lines
449 B
MySQL
Raw Normal View History

2018-08-21 18:37:05 +02:00
--
-- (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,
2018-09-21 19:06:39 +02:00
c_version INT DEFAULT 0 NOT NULL,
c_deleted INT DEFAULT 0 NOT NULL,
2018-08-21 18:37:05 +02:00
c_content CLOB,
CONSTRAINT @{tableName}_pkey PRIMARY KEY (c_uid, c_path)
2018-09-21 19:06:39 +02:00
)