]> err.no Git - scalable-opengroupware.org/blob - UI/MainUI/OCSFolderInfo.sql
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1158 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / MainUI / OCSFolderInfo.sql
1 --
2 -- (C) 2004-2005 SKYRIX Software AG
3 -- (C) 2006-2007 Inverse groupe conseil
4 --
5
6 CREATE TABLE SOGo_folder_info (
7   c_folder_id      SERIAL,
8   c_path           VARCHAR(255)  NOT NULL, -- the full path to the folder
9   c_path1          VARCHAR(255)  NOT NULL, -- parts (for fast queries)
10   c_path2          VARCHAR(255)  NULL,     -- parts (for fast queries)
11   c_path3          VARCHAR(255)  NULL,     -- parts (for fast queries)
12   c_path4          VARCHAR(255)  NULL,     -- parts (for fast queries)
13   c_foldername     VARCHAR(255)  NOT NULL, -- last path component
14   c_location       VARCHAR(2048) NOT NULL, -- URL to folder
15   c_quick_location VARCHAR(2048) NULL,     -- URL to quicktable of folder
16   c_acl_location   VARCHAR(2048) NULL,     -- URL to quicktable of folder
17   c_folder_type    VARCHAR(255)  NOT NULL  -- the folder type ...
18 );