Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F7057953
postgres.initial.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1018 B
Referenced Files
None
Subscribers
None
postgres.initial.sql
View Options
/**
* Roundcube Calendar Kolab backend
*
* @author Sergey Sidlyarenko
* @licence GNU AGPL
**/
CREATE
TABLE
IF
NOT
EXISTS
kolab_alarms
(
alarm_id
character
varying
(
255
)
NOT
NULL
,
user_id
integer
NOT
NULL
REFERENCES
users
(
user_id
)
ON
DELETE
CASCADE
ON
UPDATE
CASCADE
,
notifyat
timestamp
without
time
zone
DEFAULT
NULL
,
dismissed
smallint
NOT
NULL
DEFAULT
0
,
PRIMARY
KEY
(
alarm_id
)
);
CREATE
INDEX
kolab_alarms_user_id_idx
ON
kolab_alarms
(
user_id
);
CREATE
TABLE
IF
NOT
EXISTS
itipinvitations
(
token
character
varying
(
64
)
NOT
NULL
,
event_uid
character
varying
(
255
)
NOT
NULL
,
user_id
integer
NOT
NULL
REFERENCES
users
(
user_id
)
ON
DELETE
CASCADE
ON
UPDATE
CASCADE
,
event
text
NOT
NULL
,
expires
timestamp
without
time
zone
DEFAULT
NULL
,
cancelled
smallint
NOT
NULL
DEFAULT
0
,
PRIMARY
KEY
(
token
)
);
CREATE
INDEX
itipinvitations_user_id_event_uid_idx
ON
itipinvitations
(
user_id
,
event_uid
);
INSERT
INTO
system
(
name
,
value
)
VALUES
(
'calendar-kolab-version'
,
'2014041700'
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jun 12, 4:15 AM (12 h, 9 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
779104
Default Alt Text
postgres.initial.sql (1018 B)
Attached To
Mode
R14 roundcubemail-plugins-kolab
Attached
Detach File
Event Timeline
Log In to Comment