From 68a2b397a8f83abf04bad2b9dae8de7378ca3f30 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 15 Mar 2026 17:41:09 -0500 Subject: [PATCH] testing --- .../2026_03_10_013849_create_eve_tables.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/database/migrations/2026_03_10_013849_create_eve_tables.php b/database/migrations/2026_03_10_013849_create_eve_tables.php index 8270187..124cdee 100644 --- a/database/migrations/2026_03_10_013849_create_eve_tables.php +++ b/database/migrations/2026_03_10_013849_create_eve_tables.php @@ -11,6 +11,16 @@ return new class extends Migration */ public function up(): void { + if(!Schema::hasTable('Config')) { + Schema::create('Config', function (Blueprint $table) { + $table->id(); + $table->decimal('RentalTax', 5, 2); + $table->decimal('RefineRate', 20, 2); + $table->unsignedBigInteger('RentalTime'); + $table->timestamps(); + }); + } + if (!Schema::hasTable('eve_mails')) { Schema::create('eve_mails', function (Blueprint $table){ $table->increments('id'); @@ -668,5 +678,6 @@ return new class extends Migration Schema::dropIfExists('wormhole_types'); Schema::dropIfExists('corporation_wallet_journal'); Schema::dropIfExists('character_wallet_journal'); + Schema::dropIfExists('Config'); } };