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.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function up(): void
|
2017-02-05 22:58:17 +00:00
|
|
|
{
|
|
|
|
Schema::table('service_packs', function (Blueprint $table) {
|
2022-11-25 20:29:04 +00:00
|
|
|
$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.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function down(): void
|
2017-02-05 22:58:17 +00:00
|
|
|
{
|
|
|
|
Schema::table('service_packs', function (Blueprint $table) {
|
2022-11-25 20:29:04 +00:00
|
|
|
$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');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|