ctrlpanel/database/migrations/2023_05_08_095818_add_last_billed_field_to_servers.php

39 lines
885 B
PHP

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