mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
3bf5a71802
Co-authored-by: Matthew Penner <matthew@pterodactyl.io>
70 lines
2.2 KiB
PHP
70 lines
2.2 KiB
PHP
<?php
|
|
|
|
use Pterodactyl\Models\Subuser;
|
|
use Pterodactyl\Models\Permission;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class SetupPermissionsPivotTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::table('permissions', function (Blueprint $table) {
|
|
$table->unsignedInteger('subuser_id')->after('id');
|
|
});
|
|
|
|
DB::transaction(function () {
|
|
foreach (Subuser::all() as &$subuser) {
|
|
Permission::query()->where('user_id', $subuser->user_id)->where('server_id', $subuser->server_id)->update([
|
|
'subuser_id' => $subuser->id,
|
|
]);
|
|
}
|
|
});
|
|
|
|
Schema::table('permissions', function (Blueprint $table) {
|
|
$table->dropForeign(['server_id']);
|
|
$table->dropForeign(['user_id']);
|
|
|
|
$table->dropColumn('server_id');
|
|
$table->dropColumn('user_id');
|
|
$table->dropColumn('created_at');
|
|
$table->dropColumn('updated_at');
|
|
$table->foreign('subuser_id')->references('id')->on('subusers');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::table('permissions', function (Blueprint $table) {
|
|
$table->unsignedInteger('server_id')->after('subuser_id');
|
|
$table->unsignedInteger('user_id')->after('server_id');
|
|
$table->timestamps();
|
|
});
|
|
|
|
DB::transaction(function () {
|
|
foreach (Subuser::all() as &$subuser) {
|
|
Permission::query()->where('subuser_id', $subuser->id)->update([
|
|
'user_id' => $subuser->user_id,
|
|
'server_id' => $subuser->server_id,
|
|
]);
|
|
}
|
|
});
|
|
|
|
Schema::table('permissions', function (Blueprint $table) {
|
|
$table->dropForeign(['subuser_id']);
|
|
$table->dropIndex(['subuser_id']);
|
|
$table->dropColumn('subuser_id');
|
|
|
|
$table->foreign('server_id')->references('id')->on('servers');
|
|
$table->foreign('user_id')->references('id')->on('users');
|
|
});
|
|
}
|
|
}
|