2016-11-27 20:50:10 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class AddPackColumn extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function up(): void
|
2016-11-27 20:50:10 +01:00
|
|
|
{
|
|
|
|
Schema::table('servers', function (Blueprint $table) {
|
|
|
|
$table->unsignedInteger('pack')->nullable()->after('option');
|
|
|
|
|
|
|
|
$table->foreign('pack')->references('id')->on('service_packs');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function down(): void
|
2016-11-27 20:50:10 +01:00
|
|
|
{
|
|
|
|
Schema::table('servers', function (Blueprint $table) {
|
2017-04-20 00:43:32 +02:00
|
|
|
$table->dropForeign(['pack']);
|
2016-11-27 20:50:10 +01:00
|
|
|
$table->dropColumn('pack');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|