mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 05:47:38 +08:00
37 lines
1.1 KiB
PHP
37 lines
1.1 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', 'viewUserList')
|
|
->update(['permission' => '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', 'searchUsers')
|
|
->update(['permission' => 'viewUserList']);
|
|
}
|
|
];
|