Remove Special:Asksql; moving it out to an extension.
[mediawiki.git] / maintenance / postgresql / pg_users.sql
blobc01eef7dcda0add2ff0add6958f322bae475dd55
1 -- access rights for wiki database users
2 CREATE USER {$wgDBuser}
3         PASSWORD '{$wgDBpassword}';
5 GRANT SELECT,INSERT,UPDATE,DELETE ON
6         archive,brokenlinks,categorylinks,cur,
7         cur_cur_id_seq,hitcounter,image,imagelinks,
8         interwiki,ipblocks,ipblocks_ipb_id_seq,links,
9         linkscc,math,objectcache,"old",old_old_id_seq,
10         oldimage,profiling,querycache,recentchanges,
11         recentchanges_rc_id_seq,searchindex,site_stats,
12         site_stats_ss_row_id_seq,"user",user_newtalk,
13         user_rights,user_user_id_seq,validate,watchlist 
14 TO {$wgDBuser};