mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-07 00:26:48 +01:00
Added new database upgrade script, converted DDL scripts to new format
This commit is contained in:
@@ -262,3 +262,16 @@ CREATE TABLE searches (
|
||||
data text NOT NULL,
|
||||
CONSTRAINT searches_user_id_key UNIQUE (user_id, "type", name)
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Table "system"
|
||||
-- Name: system; Type: TABLE; Schema: public; Owner: postgres
|
||||
--
|
||||
|
||||
CREATE TABLE "system" (
|
||||
name varchar(64) NOT NULL PRIMARY KEY,
|
||||
value text
|
||||
);
|
||||
|
||||
INSERT INTO system (name, value) VALUES ('roundcube-version', '2013011000.sql');
|
||||
|
||||
Reference in New Issue
Block a user