MediaWiki namespace
[lhc/web/wiklou.git] / maintenance / initialdata.sql
1 -- SQL to load database with initial values for testing.
2 -- Most will be overwritten by install script.
3 --
4
5 INSERT INTO user (user_name,user_rights,user_password)
6 VALUES ('WikiSysop','sysop','d41d8cd98f00b204e9800998ecf8427e'),
7 ('WikiDeveloper','sysop,developer','d41d8cd98f00b204e9800998ecf8427e');
8
9 INSERT INTO cur (cur_namespace,cur_title,cur_text,cur_restrictions)
10 VALUES (4,'Upload_log','Below is a list of the most recent file uploads.\nAll times shown are server time (UTC).\n<ul>\n</ul>\n','sysop'),
11 (4,'Deletion_log','Below is a list of the most recent deletions.\nAll times shown are server time (UTC).\n<ul>\n</ul>\n','sysop'),
12 (0,'Main_Page','Wiki software successfully installed!','');
13
14 INSERT INTO site_stats VALUES (1,0,0,0);
15