controller error correction
This commit is contained in:
@@ -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',
|
||||||
|
|||||||
Reference in New Issue
Block a user