misc_pterodactyl-panel/database/migrations/2017_02_05_164516_AdjustColumnNamesForServicePacks.php

36 lines
955 B
PHP
Raw Permalink Normal View History

2017-02-05 22:58:17 +00:00
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AdjustColumnNamesForServicePacks extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
2017-02-05 22:58:17 +00:00
{
Schema::table('service_packs', function (Blueprint $table) {
$table->dropForeign(['option']);
2017-02-05 22:58:17 +00:00
$table->renameColumn('option', 'option_id');
$table->foreign('option_id')->references('id')->on('service_options');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
2017-02-05 22:58:17 +00:00
{
Schema::table('service_packs', function (Blueprint $table) {
$table->dropForeign(['option_id']);
$table->dropIndex(['option_id']);
2017-02-05 22:58:17 +00:00
$table->renameColumn('option_id', 'option');
$table->foreign('option')->references('id')->on('service_options');
});
}
}