summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2002-12-08 07:54:30 +0000
committerDries Buytaert <dries@buytaert.net>2002-12-08 07:54:30 +0000
commitd2d381d7c40efef52ea6a5e8c28a6f1b7da50f55 (patch)
tree65456cf9e85c24929b465e78ae53727386207633 /database
parent7c187f894cb74270cf1a43bbfe5844e0ac5b56ec (diff)
downloadbrdo-d2d381d7c40efef52ea6a5e8c28a6f1b7da50f55.tar.gz
brdo-d2d381d7c40efef52ea6a5e8c28a6f1b7da50f55.tar.bz2
- Removed rating module; it is not being used much and it has a known bug.
Will add it to the contributions repository.
Diffstat (limited to 'database')
-rw-r--r--database/database.mysql11
-rw-r--r--database/database.pgsql41
2 files changed, 7 insertions, 45 deletions
diff --git a/database/database.mysql b/database/database.mysql
index d962a7f0d..672edd03b 100644
--- a/database/database.mysql
+++ b/database/database.mysql
@@ -334,17 +334,6 @@ CREATE TABLE poll_choices (
) TYPE=MyISAM;
--
--- Table structure for table 'rating'
---
-
-CREATE TABLE rating (
- uid int(10) NOT NULL default '0',
- current int(6) NOT NULL default '0',
- previous int(6) NOT NULL default '0',
- PRIMARY KEY (uid)
-) TYPE=MyISAM;
-
---
-- Table structure for table 'role'
--
diff --git a/database/database.pgsql b/database/database.pgsql
index 5ae053806..780af6233 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -331,17 +331,6 @@ CREATE TABLE poll_choices (
CREATE INDEX poll_choices_nid_idx ON poll_choices(nid);
--
--- Table structure for rating
---
-
-CREATE TABLE rating (
- uid integer NOT NULL default '0',
- current integer NOT NULL default '0',
- previous integer NOT NULL default '0',
- PRIMARY KEY (uid)
-);
-
---
-- Table structure for role
--
@@ -560,30 +549,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);
INSERT INTO variable(name,value) VALUES('update_start', '2002-05-15');
INSERT INTO variable(name,value) VALUES('theme_default','s:6:"marvin";');