Updated (unused) recentchangestext, some corrections (bugs and otherwise)
[mediawiki.git] / maintenance / initialdata.sql
blob7e6ec37ce0026015e17aa8375442024ca7b1d60b
1 -- SQL to load database with initial values for testing.
2 -- Most will be overwritten by install script.
3 --
5 INSERT INTO user (user_name,user_rights,user_password)
6   VALUES ('WikiSysop','sysop','d41d8cd98f00b204e9800998ecf8427e'),
7   ('WikiDeveloper','sysop,developer','d41d8cd98f00b204e9800998ecf8427e');
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!','');
14 INSERT INTO site_stats VALUES (1,0,0,0);