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>
35 lines
854 B
PHP
35 lines
854 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class UpdateAPIKeyColumnNames extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::table('api_keys', function (Blueprint $table) {
|
|
$table->dropForeign(['user']);
|
|
|
|
$table->renameColumn('user', 'user_id');
|
|
$table->foreign('user_id')->references('id')->on('users');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::table('api_keys', function (Blueprint $table) {
|
|
$table->dropForeign(['user_id']);
|
|
|
|
$table->renameColumn('user_id', 'user');
|
|
$table->foreign('user')->references('id')->on('users');
|
|
});
|
|
}
|
|
}
|