summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-12-08 17:57:03 +0000
committerDries Buytaert <dries@buytaert.net>2003-12-08 17:57:03 +0000
commit7c791a7c866fed8c00d7495ef456a8b23a59c252 (patch)
tree2c6e9041c4d7629e4f7a178124b0494dd270c7dd /database
parent427364a5f542d74218d6da24403d81e8e7e2c035 (diff)
downloadbrdo-7c791a7c866fed8c00d7495ef456a8b23a59c252.tar.gz
brdo-7c791a7c866fed8c00d7495ef456a8b23a59c252.tar.bz2
- Updated the database schemes: the default rows that are inserted into
the database did not have the throttle column. Patches by Matt and Goba.
Diffstat (limited to 'database')
-rw-r--r--database/database.mssql18
-rw-r--r--database/database.mysql18
-rw-r--r--database/database.pgsql18
3 files changed, 27 insertions, 27 deletions
diff --git a/database/database.mssql b/database/database.mssql
index 1dc7d0db6..a3a7d9257 100644
--- a/database/database.mssql
+++ b/database/database.mssql
@@ -480,15 +480,15 @@ GO
-- Insert some default values
--
-INSERT INTO system VALUES ('modules/admin.module','admin','module','',1,0);
-INSERT INTO system VALUES ('modules/block.module','block','module','',1,0);
-INSERT INTO system VALUES ('modules/comment.module','comment','module','',1,0);
-INSERT INTO system VALUES ('modules/help.module','help','module','',1,0);
-INSERT INTO system VALUES ('modules/node.module','node','module','',1,0);
-INSERT INTO system VALUES ('modules/page.module','page','module','',1,0);
-INSERT INTO system VALUES ('modules/story.module','story','module','',1,0);
-INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1,0);
-INSERT INTO system VALUES ('themes/xtemplate/xtemplate.theme','xtemplate','theme','Internet explorer, Netscape, Opera',1,0);
+INSERT INTO system VALUES ('modules/admin.module','admin','module','',1,0,0);
+INSERT INTO system VALUES ('modules/block.module','block','module','',1,0,0);
+INSERT INTO system VALUES ('modules/comment.module','comment','module','',1,0,0);
+INSERT INTO system VALUES ('modules/help.module','help','module','',1,0,0);
+INSERT INTO system VALUES ('modules/node.module','node','module','',1,0,0);
+INSERT INTO system VALUES ('modules/page.module','page','module','',1,0,0);
+INSERT INTO system VALUES ('modules/story.module','story','module','',1,0,0);
+INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1,0,0);
+INSERT INTO system VALUES ('themes/xtemplate/xtemplate.theme','xtemplate','theme','Internet explorer, Netscape, Opera',1,0,0);
INSERT INTO variable(name,value) VALUES('update_start', 's:10:"2003-10-27";');
INSERT INTO variable(name,value) VALUES('theme_default','s:9:"xtemplate";');
diff --git a/database/database.mysql b/database/database.mysql
index 3cf1ec92d..962cf112e 100644
--- a/database/database.mysql
+++ b/database/database.mysql
@@ -563,15 +563,15 @@ CREATE TABLE watchdog (
-- Insert some default values
--
-INSERT INTO system VALUES ('modules/admin.module','admin','module','',1,0);
-INSERT INTO system VALUES ('modules/block.module','block','module','',1,0);
-INSERT INTO system VALUES ('modules/comment.module','comment','module','',1,0);
-INSERT INTO system VALUES ('modules/help.module','help','module','',1,0);
-INSERT INTO system VALUES ('modules/node.module','node','module','',1,0);
-INSERT INTO system VALUES ('modules/page.module','page','module','',1,0);
-INSERT INTO system VALUES ('modules/story.module','story','module','',1,0);
-INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1,0);
-INSERT INTO system VALUES ('themes/xtemplate/xtemplate.theme','xtemplate','theme','Internet explorer, Netscape, Opera',1,0);
+INSERT INTO system VALUES ('modules/admin.module','admin','module','',1,0,0);
+INSERT INTO system VALUES ('modules/block.module','block','module','',1,0,0);
+INSERT INTO system VALUES ('modules/comment.module','comment','module','',1,0,0);
+INSERT INTO system VALUES ('modules/help.module','help','module','',1,0,0);
+INSERT INTO system VALUES ('modules/node.module','node','module','',1,0,0);
+INSERT INTO system VALUES ('modules/page.module','page','module','',1,0,0);
+INSERT INTO system VALUES ('modules/story.module','story','module','',1,0,0);
+INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1,0,0);
+INSERT INTO system VALUES ('themes/xtemplate/xtemplate.theme','xtemplate','theme','Internet explorer, Netscape, Opera',1,0,0);
INSERT INTO users (uid, name, mail, rid) VALUES ('0', '', '', '1');
REPLACE variable SET name='update_start', value='s:10:"2003-10-27;"';
diff --git a/database/database.pgsql b/database/database.pgsql
index 2ae034d93..3c9f83897 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -561,15 +561,15 @@ CREATE TABLE watchdog (
-- Insert some default values
--
-INSERT INTO system VALUES ('modules/admin.module','admin','module','',1,0);
-INSERT INTO system VALUES ('modules/block.module','block','module','',1,0);
-INSERT INTO system VALUES ('modules/comment.module','comment','module','',1,0);
-INSERT INTO system VALUES ('modules/help.module','help','module','',1,0);
-INSERT INTO system VALUES ('modules/node.module','node','module','',1,0);
-INSERT INTO system VALUES ('modules/page.module','page','module','',1,0);
-INSERT INTO system VALUES ('modules/story.module','story','module','',1,0);
-INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1,0);
-INSERT INTO system VALUES ('themes/xtemplate/xtemplate.theme','xtemplate','theme','Internet explorer, Netscape, Opera',1,0);
+INSERT INTO system VALUES ('modules/admin.module','admin','module','',1,0,0);
+INSERT INTO system VALUES ('modules/block.module','block','module','',1,0,0);
+INSERT INTO system VALUES ('modules/comment.module','comment','module','',1,0,0);
+INSERT INTO system VALUES ('modules/help.module','help','module','',1,0,0);
+INSERT INTO system VALUES ('modules/node.module','node','module','',1,0,0);
+INSERT INTO system VALUES ('modules/page.module','page','module','',1,0,0);
+INSERT INTO system VALUES ('modules/story.module','story','module','',1,0,0);
+INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1,0,0);
+INSERT INTO system VALUES ('themes/xtemplate/xtemplate.theme','xtemplate','theme','Internet explorer, Netscape, Opera',1,0,0);
INSERT INTO variable(name,value) VALUES('update_start', 's:10:"2003-10-27";');
INSERT INTO variable(name,value) VALUES('theme_default','s:9:"xtemplate";');