testing
This commit is contained in:
@@ -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');
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user