(core) new database structure options to make SOGo use a total of nine tables

This commit is contained in:
Ludovic Marcotte
2016-03-10 16:34:06 -05:00
parent 819851bb92
commit 4ac41dace7
25 changed files with 1055 additions and 118 deletions

15
UI/MainUI/OCSStore.sql Normal file
View File

@@ -0,0 +1,15 @@
--
-- (C) 2004-2005 SKYRIX Software AG
-- (C) 2006-2007 Inverse inc.
--
CREATE TABLE @{tableName} (
c_folder_id INT NOT NULL,
c_name VARCHAR (255),
c_content TEXT NOT NULL,
c_creationdate INT NOT NULL,
c_lastmodified INT NOT NULL,
c_version INT NOT NULL,
c_deleted INT NULL,
CONSTRAINT @{tableName}_pkey PRIMARY KEY (c_folder_id, c_name)
);