This commit is contained in:
2026-03-15 17:41:09 -05:00
parent d9982c5a0b
commit 68a2b397a8

View File

@@ -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');
}
};