diff --git a/database/migrations/2018_10_28_202354_create_market_orders.php b/database/migrations/2018_10_28_202354_create_market_orders.php index ab73eddab..29092450f 100644 --- a/database/migrations/2018_10_28_202354_create_market_orders.php +++ b/database/migrations/2018_10_28_202354_create_market_orders.php @@ -16,7 +16,7 @@ class CreateMarketOrders extends Migration Schema::create('MarketOrders', function(Blueprint $table) { $table->integer('duration'); $table->boolean('is_buy_order'); - $table->date('issued'); + $table->dateTime('issued'); $table->integer('location_id'); $table->integer('min_volume'); $table->integer('order_id')->unique(); diff --git a/database/migrations/2018_10_28_204313_create_structures.php b/database/migrations/2018_10_28_204313_create_structures.php index 45df59002..5b9721d0d 100644 --- a/database/migrations/2018_10_28_204313_create_structures.php +++ b/database/migrations/2018_10_28_204313_create_structures.php @@ -15,21 +15,21 @@ class CreateStructures extends Migration { Schema::create('Structures', function(Blueprint $table) { $table->integer('corporation_id'); - $table->date('fuel_expires'); - $table->date('next_reinforce_apply'); + $table->dateTime('fuel_expires'); + $table->dateTime('next_reinforce_apply'); $table->integer('next_reinforce_hour'); $table->integer('next_reinforce_weekday'); $table->integer('profile_id'); $table->integer('reinforce_hour'); $table->integer('reinforce_weekday'); - $table->data('services'); + $table->dateTime('services'); $table->string('state'); $table->date('state_timer_end'); $table->date('state_timer_start'); $table->integer('structure_id')->unique(); $table->integer('system_id'); $table->integer('type_id'); - $table->date('unanchors_at'); + $table->dateTime('unanchors_at'); $table->timestamps(); }); } diff --git a/database/migrations/2018_10_29_001917_create_holding_corp_finances_journal.php b/database/migrations/2018_10_29_001917_create_holding_corp_finances_journal.php index 2632076f0..e709635e5 100644 --- a/database/migrations/2018_10_29_001917_create_holding_corp_finances_journal.php +++ b/database/migrations/2018_10_29_001917_create_holding_corp_finances_journal.php @@ -19,7 +19,7 @@ class CreateHoldingCorpFinancesJournal extends Migration $table->decimal('balance', 20, 2); $table->integer('context_id'); $table->string('context_id_type'); - $table->date('date'); + $table->dateTime('date'); $table->string('description'); $table->integer('first_party_id')->nullable(); $table->string('reason')->nullabe();