From b7e7c8f9501850a38705e0a1f18a8ae6e25f1be1 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 9 Jan 2013 15:57:29 +0100 Subject: Added new database upgrade script, converted DDL scripts to new format --- SQL/sqlite.initial.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'SQL/sqlite.initial.sql') diff --git a/SQL/sqlite.initial.sql b/SQL/sqlite.initial.sql index f5b5615d8..76913e89c 100644 --- a/SQL/sqlite.initial.sql +++ b/SQL/sqlite.initial.sql @@ -197,3 +197,16 @@ CREATE TABLE cache_messages ( ); CREATE INDEX ix_cache_messages_changed ON cache_messages (changed); + +-- -------------------------------------------------------- + +-- +-- Table structure for table system +-- + +CREATE TABLE system ( + name varchar(64) NOT NULL PRIMARY KEY, + value text NOT NULL +); + +INSERT INTO system (name, value) VALUES ('roundcube-version', '2013011000.sql'); -- cgit v1.2.3