mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-03 20:38:50 +00:00
(core) new database structure options to make SOGo use a total of nine tables
This commit is contained in:
14
UI/MainUI/OCSAcl-postgresql.sql
Normal file
14
UI/MainUI/OCSAcl-postgresql.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
--
|
||||
-- (C) 2004-2005 SKYRIX Software AG
|
||||
-- (C) 2006-2007 Inverse inc.
|
||||
--
|
||||
|
||||
CREATE TABLE @{tableName} (
|
||||
c_folder_id INTEGER NOT NULL,
|
||||
c_object VARCHAR(255) NOT NULL,
|
||||
c_uid VARCHAR(255) NOT NULL,
|
||||
c_role VARCHAR(80) NOT NULL
|
||||
);
|
||||
|
||||
CREATE INDEX @{tableName}_c_folder_id_idx ON @{tableName}(c_folder_id);
|
||||
CREATE INDEX @{tableName}_c_uid_idx ON @{tableName}(c_uid);
|
||||
Reference in New Issue
Block a user