ctrlpanel/database/migrations/2023_05_08_234527_add_cancelation_to_servers_table.php

38 lines
806 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")) {
return;
}
Schema::table('servers', function (Blueprint $table) {
$table->dateTime('cancelled')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('servers', function (Blueprint $table) {
$table->dropColumn('cancelled');
});
}
}