Whitespace and paranoia
[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 (4,'Block log', 'This is a log of user blocking and unblocking actions. Automatically
14 blocked IP addresses are not be listed. See the [[Special:Ipblocklist|IP block list]] for
15 the list of currently operational bans and blocks.', 'sysop');
16
17 INSERT INTO site_stats VALUES (1,0,0,0);
18