1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-25 10:32:31 +01:00
Pterodactyl-Panel/database/migrations/2017_02_05_164516_AdjustColumnNamesForServicePacks.php

36 lines
955 B
PHP
Raw Permalink Normal View History

2017-02-05 23:58:17 +01: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 23:58:17 +01:00
{
Schema::table('service_packs', function (Blueprint $table) {
$table->dropForeign(['option']);
2017-02-05 23:58:17 +01: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 23:58:17 +01:00
{
Schema::table('service_packs', function (Blueprint $table) {
$table->dropForeign(['option_id']);
$table->dropIndex(['option_id']);
2017-02-05 23:58:17 +01:00
$table->renameColumn('option_id', 'option');
$table->foreign('option')->references('id')->on('service_options');
});
}
}