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