forked from Alex/Pterodactyl-Panel
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class UpdateOldPermissionsToPointToNewScheduleSystem extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up()
|
|
{
|
|
$permissions = DB::table('permissions')->where('permission', 'like', '%-task%')->get();
|
|
foreach ($permissions as $record) {
|
|
$parts = explode('-', $record->permission);
|
|
if (!in_array(array_get($parts, 1), ['tasks', 'task']) || count($parts) !== 2) {
|
|
continue;
|
|
}
|
|
|
|
$newPermission = $parts[0] . '-' . str_replace('task', 'schedule', $parts[1]);
|
|
|
|
DB::table('permissions')->where('id', '=', $record->id)->update(['permission' => $newPermission]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down()
|
|
{
|
|
$permissions = DB::table('permissions')->where('permission', 'like', '%-schedule%')->get();
|
|
foreach ($permissions as $record) {
|
|
$parts = explode('-', $record->permission);
|
|
if (!in_array(array_get($parts, 1), ['schedules', 'schedule']) || count($parts) !== 2) {
|
|
continue;
|
|
}
|
|
|
|
$newPermission = $parts[0] . '-' . str_replace('schedule', 'task', $parts[1]);
|
|
|
|
DB::table('permissions')->where('id', '=', $record->id)->update(['permission' => $newPermission]);
|
|
}
|
|
}
|
|
}
|