db::setBufferResults wiped out. db::bufferResults is here..
[lhc/web/wiklou.git] / maintenance / postgresql / pg_users.sql
1 -- access rights for wiki database users
2 CREATE USER {$wgDBuser}
3 PASSWORD '{$wgDBpassword}';
4
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};