summaryrefslogtreecommitdiff
path: root/roundcubemail/SQL/mysql.initial.sql
diff options
context:
space:
mode:
authorroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-02-19 19:08:53 +0000
committerroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-02-19 19:08:53 +0000
commit2b523a22fd00e247415ff4842b6f770d3d1e7be1 (patch)
tree07e438e03777d8eb4f20ea8ec94ae8315d1fdb52 /roundcubemail/SQL/mysql.initial.sql
parentcfe23b17736f92a85eb4e8968c31d1e2657bb70c (diff)
Updated installation instructions
git-svn-id: https://svn.roundcube.net/trunk@142 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/mysql.initial.sql')
-rw-r--r--roundcubemail/SQL/mysql.initial.sql14
1 files changed, 7 insertions, 7 deletions
diff --git a/roundcubemail/SQL/mysql.initial.sql b/roundcubemail/SQL/mysql.initial.sql
index acaac7bdf..9e3ee2758 100644
--- a/roundcubemail/SQL/mysql.initial.sql
+++ b/roundcubemail/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;
+);