add: Aura.

master
WildEgo 2025-10-05 17:57:53 +01:00
parent d249ba230c
commit 33b06fa065
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<?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('item', function (Blueprint $table) {
$table->enum('window', ['INVENTORY', 'EQUIPMENT', 'SAFEBOX', 'MALL', 'DRAGON_SOUL_INVENTORY', 'BELT_INVENTORY', 'AURA_REFINE'])->default('INVENTORY')->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('item', function (Blueprint $table) {
$table->enum('window', ['INVENTORY', 'EQUIPMENT', 'SAFEBOX', 'MALL', 'DRAGON_SOUL_INVENTORY', 'BELT_INVENTORY'])->default('INVENTORY')->change();
});
}
};