ctrlpanel/database/migrations/2021_05_07_065911_update_to_servers_table.php
2023-01-05 17:03:31 +00:00

39 lines
1,002 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('servers', function (Blueprint $table) {
$table->dropForeign('servers_egg_id_foreign');
$table->dropForeign('servers_location_id_foreign');
$table->dropColumn('egg_id');
$table->dropColumn('location_id');
$table->string('config')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('servers', function (Blueprint $table) {
$table->foreignId('egg_id')->references('id')->on('eggs');
$table->foreignId('location_id')->references('id')->on('locations');
$table->dropColumn('config');
});
}
};