ctrlpanel/database/migrations/2023_05_08_234527_add_cancelation_to_servers_table.php
2023-06-08 20:23:06 +02:00

41 lines
950 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddCancelationToServersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// User already has installed the addon before
if (Schema::hasColumn("servers", "cancelled")) {
Schema::table('servers', function (Blueprint $table) {
$table->renameColumn('cancelled', 'canceled');
});
return;
}
Schema::table('servers', function (Blueprint $table) {
$table->dateTime('canceled')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('servers', function (Blueprint $table) {
$table->dropColumn('canceled');
});
}
}