mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
9 lines
297 B
SQL
9 lines
297 B
SQL
|
|
ALTER TABLE /*$wgDBprefix*/user_groups
|
|
CHANGE user_id ug_user INT UNSIGNED NOT NULL DEFAULT '0',
|
|
CHANGE group_id ug_group INT UNSIGNED NOT NULL DEFAULT '0';
|
|
|
|
ALTER TABLE /*$wgDBprefix*/user_rights
|
|
CHANGE user_id ur_user INT UNSIGNED NOT NULL,
|
|
CHANGE user_rights ur_rights TINYBLOB NOT NULL;
|
|
|