mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-28 20:56:24 +00:00
see ChangeLog
Monotone-Revision: 9054022ef1ca8aeba6e34842d27d9b94ce002b89 Monotone-Author: dev-unix.inverse.qc.ca Monotone-Date: 2006-06-15T19:34:10 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
62
OGoContentStore/sql/folderinfo-create.sqlite
Normal file
62
OGoContentStore/sql/folderinfo-create.sqlite
Normal file
@@ -0,0 +1,62 @@
|
||||
--
|
||||
-- (C) 2005 SKYRIX Software AG
|
||||
--
|
||||
-- TODO:
|
||||
-- add a unique constraints on path
|
||||
|
||||
-- DROP TABLE SOGo_folder_info;
|
||||
|
||||
CREATE TABLE SOGo_folder_info (
|
||||
c_folder_id INTEGER PRIMARY KEY,
|
||||
c_path VARCHAR(255) NOT NULL, /* the full path to the folder */
|
||||
c_path1 VARCHAR(255) NOT NULL, /* parts (for fast queries) */
|
||||
c_path2 VARCHAR(255) NULL, /* parts (for fast queries) */
|
||||
c_path3 VARCHAR(255) NULL, /* parts (for fast queries) */
|
||||
c_path4 VARCHAR(255) NULL, /* parts (for fast queries) */
|
||||
c_foldername VARCHAR(255) NOT NULL, /* last path component */
|
||||
c_location VARCHAR(2048) NOT NULL, /* URL to folder */
|
||||
c_quick_location VARCHAR(2048) NULL, /* URL to quicktable of folder */
|
||||
c_folder_type VARCHAR(255) NOT NULL /* the folder type ... */
|
||||
);
|
||||
|
||||
INSERT INTO SOGo_folder_info
|
||||
( c_path, c_path1, c_path2, c_path3, c_path4, c_foldername,
|
||||
c_location, c_quick_location, c_folder_type )
|
||||
VALUES
|
||||
( '/Users',
|
||||
'Users',
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
'Users',
|
||||
'sqlite://localhost/tmp/sogo-registry.sqlite/SOGo_user_folder_blob',
|
||||
'sqlite://localhost/tmp/sogo-registry.sqlite/SOGo_user_folder_quick',
|
||||
'Container' );
|
||||
|
||||
INSERT INTO SOGo_folder_info
|
||||
( c_path, c_path1, c_path2, c_path3, c_path4, c_foldername,
|
||||
c_location, c_quick_location, c_folder_type )
|
||||
VALUES
|
||||
( '/Users/helge',
|
||||
'Users',
|
||||
'helge',
|
||||
NULL,
|
||||
NULL,
|
||||
'helge',
|
||||
'sqlite://localhost/tmp/sogo-registry.sqlite/SOGo_user_folder_blob',
|
||||
'sqlite://localhost/tmp/sogo-registry.sqlite/SOGo_user_folder_quick',
|
||||
'Container' );
|
||||
|
||||
INSERT INTO SOGo_folder_info
|
||||
( c_path, c_path1, c_path2, c_path3, c_path4, c_foldername,
|
||||
c_location, c_quick_location, c_folder_type )
|
||||
VALUES
|
||||
( '/Users/helge/Calendar',
|
||||
'Users',
|
||||
'helge',
|
||||
'Calendar',
|
||||
NULL,
|
||||
'Calendar',
|
||||
'sqlite://localhost/tmp/sogo-registry.sqlite/SOGo_helge_privcal_blob',
|
||||
'sqlite://localhost/tmp/sogo-registry.sqlite/SOGo_helge_privcal_quick',
|
||||
'Appointment' );
|
||||
Reference in New Issue
Block a user