Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F6064718
postgres.initial.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
875 B
Referenced Files
None
Subscribers
None
postgres.initial.sql
View Options
/**
* libkolab database schema
*
* @version @package_version@
* @author Sidlyarenko Sergey
* @licence GNU AGPL
**/
DROP
TABLE
IF
EXISTS
kolab_cache
;
CREATE
TABLE
kolab_cache
(
resource
character
varying
(
255
)
NOT
NULL
,
type
character
varying
(
32
)
NOT
NULL
,
msguid
NUMERIC
(
20
)
NOT
NULL
,
uid
character
varying
(
128
)
NOT
NULL
,
created
timestamp
without
time
zone
DEFAULT
NULL
,
changed
timestamp
without
time
zone
DEFAULT
NULL
,
data
text
NOT
NULL
,
xml
text
NOT
NULL
,
dtstart
timestamp
without
time
zone
,
dtend
timestamp
without
time
zone
,
tags
character
varying
(
255
)
NOT
NULL
,
words
text
NOT
NULL
,
filename
character
varying
(
255
)
DEFAULT
NULL
,
PRIMARY
KEY
(
resource
,
type
,
msguid
)
);
CREATE
INDEX
kolab_cache_resource_filename_idx
ON
kolab_cache
(
resource
,
filename
);
INSERT
INTO
system
(
name
,
value
)
VALUES
(
'libkolab-version'
,
'2013041900'
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, May 22, 4:26 AM (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
649645
Default Alt Text
postgres.initial.sql (875 B)
Attached To
Mode
R14 roundcubemail-plugins-kolab
Attached
Detach File
Event Timeline
Log In to Comment