From 27ded1527f910fdaf1f5119a8338a3236607c9d4 Mon Sep 17 00:00:00 2001 From: WildEgo Date: Thu, 9 Oct 2025 22:43:07 +0100 Subject: [PATCH] add: Missing fields to item table. --- .../2024_03_30_000031_create_item_table.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/database/migrations/2024_03_30_000031_create_item_table.php b/database/migrations/2024_03_30_000031_create_item_table.php index 54840ee..2283df5 100644 --- a/database/migrations/2024_03_30_000031_create_item_table.php +++ b/database/migrations/2024_03_30_000031_create_item_table.php @@ -26,6 +26,18 @@ return new class extends Migration $table->unsignedInteger('socket3')->default(0); $table->unsignedInteger('socket4')->default(0); $table->unsignedInteger('socket5')->default(0); + $table->tinyInteger('apply_path0')->default(0); + $table->smallInteger('apply_value0')->default(0); + $table->tinyInteger('apply_type0')->default(0); + $table->tinyInteger('apply_path1')->default(0); + $table->smallInteger('apply_value1')->default(0); + $table->tinyInteger('apply_type1')->default(0); + $table->tinyInteger('apply_path2')->default(0); + $table->smallInteger('apply_value2')->default(0); + $table->tinyInteger('apply_type2')->default(0); + $table->tinyInteger('apply_path3')->default(0); + $table->smallInteger('apply_value3')->default(0); + $table->tinyInteger('apply_type3')->default(0); $table->tinyInteger('attrtype0')->default(0); $table->smallInteger('attrvalue0')->default(0); $table->tinyInteger('attrtype1')->default(0);