add: Cheque columns.

master
WildEgo 2025-10-04 18:17:18 +01:00
parent 7cd2260d04
commit d249ba230c
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('player', function (Blueprint $table) {
$table->integer('cheque')->default(0)->after('gold');
});
Schema::table('player_deleted', function (Blueprint $table) {
$table->integer('cheque')->default(0)->after('gold');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('player', function (Blueprint $table) {
$table->dropColumn('cheque');
});
Schema::table('player_deleted', function (Blueprint $table) {
$table->dropColumn('cheque');
});
}
};