diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-09-09 18:18:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-09-09 18:18:43 +0000 |
commit | 8e657f64efb3c3e12365d1c33e6ab89e40d9bfd5 (patch) | |
tree | af96a46601a88e0be7089151a7bdb95afd54c310 /database/database.mysql | |
parent | accebe358c1cb4b07e6dba7f9f7776fe3b09d242 (diff) | |
download | brdo-8e657f64efb3c3e12365d1c33e6ab89e40d9bfd5.tar.gz brdo-8e657f64efb3c3e12365d1c33e6ab89e40d9bfd5.tar.bz2 |
- Gerhard's uid 0 patches. These patches bring various performance
improvements. Requires a database update.
Diffstat (limited to 'database/database.mysql')
-rw-r--r-- | database/database.mysql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/database/database.mysql b/database/database.mysql index e9b5625a3..959f15c28 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -500,7 +500,7 @@ CREATE TABLE term_synonym ( -- CREATE TABLE users ( - uid int(10) unsigned NOT NULL auto_increment, + uid int(10) unsigned NOT NULL default '0', name varchar(60) NOT NULL default '', pass varchar(32) NOT NULL default '', mail varchar(64) default '', @@ -578,6 +578,7 @@ 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 users (uid, name, mail) VALUES ('0', 'Anonymous', 'root@localhost'); REPLACE variable SET name='update_start', value='s:10:"2003-04-19;"'; REPLACE variable SET name='theme_default', value='s:6:"marvin";'; |