controller error correction

This commit is contained in:
2019-12-06 21:37:21 -06:00
parent d41d678df3
commit 9ef5ff1dac

View File

@@ -16,11 +16,11 @@ class CreateFlexStructuresTable extends Migration
if(!Schema::hasTable('alliance_flex_structures')) { if(!Schema::hasTable('alliance_flex_structures')) {
Schema::create('alliance_flex_structures', function (Blueprint $table) { Schema::create('alliance_flex_structures', function (Blueprint $table) {
$table->bigIncrements('id'); $table->bigIncrements('id');
$table->bigUnsignedInteger('requestor_id'); $table->unsignedBigInteger('requestor_id');
$table->string('request_name'); $table->string('request_name');
$table->bigUnsignedInteger('requestor_corp_id'); $table->unsignedBigInteger('requestor_corp_id');
$table->string('request_corp_name'); $table->string('request_corp_name');
$table->bigUnsignedInteger('system_id'); $table->unsignedBigInteger('system_id');
$table->string('system'); $table->string('system');
$table->enum('structure_type', [ $table->enum('structure_type', [
'Cyno Jammer', 'Cyno Jammer',