mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
3bf5a71802
Co-authored-by: Matthew Penner <matthew@pterodactyl.io>
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(): void
|
|
{
|
|
$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(): void
|
|
{
|
|
$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]);
|
|
}
|
|
}
|
|
}
|