summaryrefslogtreecommitdiff
path: root/SQL/mysql.initial.sql
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-02-19 19:08:53 +0000
committerthomascube <thomas@roundcube.net>2006-02-19 19:08:53 +0000
commit535da27ca630866d28f0448a1e5bea0f800a9430 (patch)
tree277dbf06b12cdd86253709999ee30b6c57c2f332 /SQL/mysql.initial.sql
parente93c08daed9901f1a6a99d41e78c2becd49d4aa7 (diff)
Updated installation instructions
Diffstat (limited to 'SQL/mysql.initial.sql')
-rw-r--r--SQL/mysql.initial.sql14
1 files changed, 7 insertions, 7 deletions
diff --git a/SQL/mysql.initial.sql b/SQL/mysql.initial.sql
index acaac7bdf..9e3ee2758 100644
--- a/SQL/mysql.initial.sql
+++ b/SQL/mysql.initial.sql
@@ -1,5 +1,5 @@
-- RoundCube Webmail initial database structure
--- Version 0.1a
+-- Version 0.1b
--
-- --------------------------------------------------------
@@ -19,7 +19,7 @@ CREATE TABLE `cache` (
KEY `user_id` (`user_id`),
KEY `cache_key` (`cache_key`),
KEY `session_id` (`session_id`)
-) TYPE=MyISAM;
+);
-- --------------------------------------------------------
@@ -39,7 +39,7 @@ CREATE TABLE `contacts` (
`vcard` text NOT NULL,
PRIMARY KEY (`contact_id`),
KEY `user_id` (`user_id`)
-) TYPE=MyISAM;
+);
-- --------------------------------------------------------
@@ -60,7 +60,7 @@ CREATE TABLE `identities` (
`signature` text NOT NULL,
PRIMARY KEY (`identity_id`),
KEY `user_id` (`user_id`)
-) TYPE=MyISAM;
+);
-- --------------------------------------------------------
@@ -75,7 +75,7 @@ CREATE TABLE `session` (
`ip` VARCHAR(15) NOT NULL default '',
`vars` text NOT NULL,
PRIMARY KEY (`sess_id`)
-) TYPE=MyISAM;
+);
-- --------------------------------------------------------
@@ -93,7 +93,7 @@ CREATE TABLE `users` (
`language` varchar(5) NOT NULL default 'en',
`preferences` text NOT NULL default '',
PRIMARY KEY (`user_id`)
-) TYPE=MyISAM;
+);
-- --------------------------------------------------------
@@ -122,6 +122,6 @@ CREATE TABLE `messages` (
KEY `cache_key` (`cache_key`),
KEY `idx` (`idx`),
KEY `uid` (`uid`)
-) TYPE=MyISAM;
+);