mirror of
https://github.com/flarum/framework.git
synced 2025-02-09 04:48:29 +08:00
557fc2cd39
Addresses https://github.com/flarum/core/issues/2924
The rename `viewDiscussions` migration introduced for Flarum 1.0 does not take tag scoped permissions into account
e92c267cde/migrations/2021_05_10_000000_rename_permissions.php (L17)
This adds a new migration to additionally rename `tagX.viewDiscussions` to `tagX.viewForum`
Tested locally on an upgrade from core `beta.16` to `1.0.3`
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
use Illuminate\Database\Schema\Builder;
|
|
|
|
return [
|
|
'up' => function (Builder $schema) {
|
|
$db = $schema->getConnection();
|
|
|
|
$db->table('group_permission')
|
|
->where('permission', 'LIKE', '%viewDiscussions')
|
|
->update(['permission' => $db->raw("REPLACE(permission, 'viewDiscussions', 'viewForum')")]);
|
|
|
|
$db->table('group_permission')
|
|
->where('permission', 'LIKE', 'viewUserList')
|
|
->update(['permission' => $db->raw("REPLACE(permission, 'viewUserList', 'searchUsers')")]);
|
|
},
|
|
|
|
'down' => function (Builder $schema) {
|
|
$db = $schema->getConnection();
|
|
|
|
$db->table('group_permission')
|
|
->where('permission', 'LIKE', '%viewForum')
|
|
->update(['permission' => $db->raw("REPLACE(permission, 'viewForum', 'viewDiscussions')")]);
|
|
|
|
$db->table('group_permission')
|
|
->where('permission', 'LIKE', 'searchUsers')
|
|
->update(['permission' => $db->raw("REPLACE(permission, 'searchUsers', 'viewUserList')")]);
|
|
}
|
|
];
|