summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2002-12-07 10:36:44 +0000
committerDries Buytaert <dries@buytaert.net>2002-12-07 10:36:44 +0000
commitb62025c217662daed6201798d11c114ce13edcdc (patch)
treed0243f4b717f9e4d9d33933df9663e24531b6a56
parent737db302a92422f76a092e5c9f94954b603ce053 (diff)
downloadbrdo-b62025c217662daed6201798d11c114ce13edcdc.tar.gz
brdo-b62025c217662daed6201798d11c114ce13edcdc.tar.bz2
- Removed two a dead table from both the MySQL and the PostgreSQL database
scheme. - Fixed the default settings for both the MySQL and the PostgreSQL database scheme.
-rw-r--r--database/database.mysql38
-rw-r--r--database/database.pgsql9
2 files changed, 7 insertions, 40 deletions
diff --git a/database/database.mysql b/database/database.mysql
index b487177ee..d962a7f0d 100644
--- a/database/database.mysql
+++ b/database/database.mysql
@@ -253,15 +253,6 @@ CREATE TABLE moderation_votes (
) TYPE=MyISAM;
--
--- Table structure for table 'modules'
---
-
-CREATE TABLE modules (
- name varchar(64) NOT NULL default '',
- PRIMARY KEY (name)
-) TYPE=MyISAM;
-
---
-- Table structure for table 'node'
--
@@ -569,29 +560,14 @@ CREATE TABLE watchdog (
-- Insert some default values
--
-INSERT INTO system VALUES ('archive.module','archive','module','',1);
-INSERT INTO system VALUES ('block.module','block','module','',1);
-INSERT INTO system VALUES ('blog.module','blog','module','',1);
-INSERT INTO system VALUES ('book.module','book','module','',1);
-INSERT INTO system VALUES ('cloud.module','cloud','module','',1);
-INSERT INTO system VALUES ('comment.module','comment','module','',1);
-INSERT INTO system VALUES ('forum.module','forum','module','',1);
-INSERT INTO system VALUES ('help.module','help','module','',1);
-INSERT INTO system VALUES ('import.module','import','module','',1);
-INSERT INTO system VALUES ('node.module','node','module','',1);
-INSERT INTO system VALUES ('page.module','page','module','',1);
-INSERT INTO system VALUES ('poll.module','poll','module','',1);
-INSERT INTO system VALUES ('queue.module','queue','module','',1);
-INSERT INTO system VALUES ('rating.module','rating','module','',1);
-INSERT INTO system VALUES ('search.module','search','module','',1);
-INSERT INTO system VALUES ('statistics.module','statistics','module','',1);
-INSERT INTO system VALUES ('story.module','story','module','',1);
-INSERT INTO system VALUES ('taxonomy.module','taxonomy','module','',1);
-INSERT INTO system VALUES ('themes/example/example.theme','example','theme','Internet explorer, Netscape, Opera, Lynx',1);
-INSERT INTO system VALUES ('themes/goofy/goofy.theme','goofy','theme','Internetexplorer, Netscape, Opera',1);
+INSERT INTO system VALUES ('modules/block.module','block','module','',1);
+INSERT INTO system VALUES ('modules/comment.module','comment','module','',1);
+INSERT INTO system VALUES ('modules/help.module','help','module','',1);
+INSERT INTO system VALUES ('modules/node.module','node','module','',1);
+INSERT INTO system VALUES ('modules/page.module','page','module','',1);
+INSERT INTO system VALUES ('modules/story.module','story','module','',1);
+INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1);
INSERT INTO system VALUES ('themes/marvin/marvin.theme','marvin','theme','Internet explorer, Netscape, Opera',1);
-INSERT INTO system VALUES ('themes/unconed/unconed.theme','unconed','theme','Internet explorer, Netscape, Opera',1);
-INSERT INTO system VALUES ('tracker.module','tracker','module','',1);
REPLACE variable SET name='update_start', value='s:10:"2002-10-17;"';
REPLACE variable SET name='theme_default', value='s:6:"marvin";';
diff --git a/database/database.pgsql b/database/database.pgsql
index d90ab27be..5ae053806 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -250,15 +250,6 @@ CREATE TABLE moderation_votes (
);
--
--- Table structure for modules
---
-
-CREATE TABLE modules (
- name varchar(64) NOT NULL default '',
- PRIMARY KEY (name)
-);
-
---
-- Table structure for node
--