summaryrefslogtreecommitdiff
path: root/database/database.mysql
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-01-21 17:37:39 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-01-21 17:37:39 +0000
commit0120c08f3911279f8d0450e74c1daa62c6465d65 (patch)
tree8c8e6f877ccc16bac1a6b033294a9c6ba9f9639a /database/database.mysql
parent8c672011a267d193fa47cd7cbb523e90a643ee32 (diff)
downloadbrdo-0120c08f3911279f8d0450e74c1daa62c6465d65.tar.gz
brdo-0120c08f3911279f8d0450e74c1daa62c6465d65.tar.bz2
- updating database/database.mysql again. Forgot to remove some contrib
module tables.
Diffstat (limited to 'database/database.mysql')
-rw-r--r--database/database.mysql38
1 files changed, 8 insertions, 30 deletions
diff --git a/database/database.mysql b/database/database.mysql
index 7acdb36ac..2e96cda1e 100644
--- a/database/database.mysql
+++ b/database/database.mysql
@@ -172,22 +172,6 @@ CREATE TABLE feed (
) TYPE=MyISAM;
#
-# Table structure for table 'file'
-#
-
-CREATE TABLE file (
- lid int(10) unsigned NOT NULL auto_increment,
- nid int(10) unsigned NOT NULL default '0',
- version varchar(10) NOT NULL default '',
- url varchar(255) NOT NULL default '',
- downloads int(10) unsigned NOT NULL default '0',
- abstract text NOT NULL,
- description text NOT NULL,
- homepage varchar(255) NOT NULL default '',
- PRIMARY KEY (lid)
-) TYPE=MyISAM;
-
-#
# Table structure for table 'history'
#
@@ -215,6 +199,14 @@ CREATE TABLE item (
) TYPE=MyISAM;
#
+# Table structure for table 'layout'
+#
+CREATE TABLE layout (
+ user int(11) DEFAULT '0' NOT NULL,
+ block varchar(64) DEFAULT '' NOT NULL
+) TYPE=MyISAM;
+
+#
# Table structure for table 'locales'
#
@@ -344,20 +336,6 @@ CREATE TABLE project (
) TYPE=MyISAM;
#
-# Table structure for table 'projects'
-#
-
-CREATE TABLE projects (
- pid int(10) unsigned NOT NULL auto_increment,
- name varchar(255) NOT NULL default '',
- versions varchar(255) NOT NULL default '',
- developers varchar(255) NOT NULL default '',
- areas varchar(255) NOT NULL default '',
- mail varchar(255) NOT NULL default '',
- PRIMARY KEY (pid)
-) TYPE=MyISAM;
-
-#
# Table structure for table 'rating'
#