add: Gaya system.
parent
059e1bdc37
commit
332a8578bc
|
|
@ -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');
|
||||
});
|
||||
}
|
||||
};
|
||||
Loading…
Reference in New Issue