added /*$wgDBprefix*/ in various places, to support upgrading from old prefixed datab...
[lhc/web/wiklou.git] / maintenance / archives / patch-user_rights.sql
index b99e229..1eefb3d 100644 (file)
@@ -5,12 +5,12 @@
 -- you can store the accounts for several wikis in one central
 -- database but keep user rights local to the wiki.
 
-CREATE TABLE user_rights (
+CREATE TABLE /*$wgDBprefix*/user_rights (
        ur_user int(5) unsigned NOT NULL,
        ur_rights tinyblob NOT NULL default '',
        UNIQUE KEY ur_user (ur_user)
 ) PACK_KEYS=1;
 
-INSERT INTO user_rights SELECT user_id,user_rights FROM user;
+INSERT INTO /*$wgDBprefix*/user_rights SELECT user_id,user_rights FROM /*$wgDBprefix*/user;
 
-ALTER TABLE user DROP COLUMN user_rights;
+ALTER TABLE /*$wgDBprefix*/user DROP COLUMN user_rights;