keys
This commit is contained in:
@@ -41,7 +41,7 @@ class CorporationAssetsTable extends Migration
|
||||
|
||||
if(!Schema::hasTable('structure_services')) {
|
||||
Schema::create('structure_services', function(Blueprint $table) {
|
||||
$table->increments('id')->primary();
|
||||
$table->increments('id');
|
||||
$table->string('structure_id');
|
||||
$table->string('name');
|
||||
$table->string('state');
|
||||
@@ -50,7 +50,7 @@ class CorporationAssetsTable extends Migration
|
||||
|
||||
if(!Schema::hasTable('alliance_assets')) {
|
||||
Schema::create('alliance_assets', function(Blueprint $table) {
|
||||
$table->increments('id')->primary();
|
||||
$table->increments('id');
|
||||
$table->boolean('is_blueprint_copy')->nullable();
|
||||
$table->boolean('is_singleton');
|
||||
$table->string('item_id');
|
||||
|
||||
Reference in New Issue
Block a user