ctrlpanel/database/migrations/2023_05_08_234527_add_cancelation_to_servers_table.php

41 lines
950 B
PHP
Raw Normal View History

<?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")) {
2023-06-08 14:10:42 +00:00
Schema::table('servers', function (Blueprint $table) {
$table->renameColumn('cancelled', 'canceled');
});
return;
}
Schema::table('servers', function (Blueprint $table) {
2023-06-08 18:23:06 +00:00
$table->dateTime('canceled')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('servers', function (Blueprint $table) {
2023-06-08 14:10:42 +00:00
$table->dropColumn('canceled');
});
}
}