2017-04-01 05:07:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class AddServerDescriptionColumn extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function up(): void
|
2017-04-01 05:07:19 +02:00
|
|
|
{
|
|
|
|
Schema::table('servers', function (Blueprint $table) {
|
|
|
|
$table->text('description')->after('name');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function down(): void
|
2017-04-01 05:07:19 +02:00
|
|
|
{
|
|
|
|
Schema::table('servers', function (Blueprint $table) {
|
|
|
|
$table->dropColumn('description');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|