add: Gaya system.

master
WildEgo 2025-10-15 11:24:03 +01:00
parent 059e1bdc37
commit 332a8578bc
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('gem')->default(0)->after('gold');
});
Schema::table('player_deleted', function (Blueprint $table) {
$table->integer('gem')->default(0)->after('gold');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('player', function (Blueprint $table) {
$table->dropColumn('gem');
});
Schema::table('player_deleted', function (Blueprint $table) {
$table->dropColumn('gem');
});
}
};