From 5357b1fa10b4b9d9c0a8c8b6aaf25be3bbadeb9e Mon Sep 17 00:00:00 2001 From: Brady Wetherington Date: Mon, 9 May 2022 11:56:05 -0700 Subject: [PATCH] Remove extraneous `{` in migration It looks like we inadvertently got an extra `{` in here - I noticed it because my IDE threw a big red dot on this migration. We must've accidentally put that in when we were adding the 'id' column. --- .../2015_09_21_235926_create_custom_field_custom_fieldset.php | 1 - 1 file changed, 1 deletion(-) diff --git a/database/migrations/2015_09_21_235926_create_custom_field_custom_fieldset.php b/database/migrations/2015_09_21_235926_create_custom_field_custom_fieldset.php index ff22d14b16..c093a4aeb5 100644 --- a/database/migrations/2015_09_21_235926_create_custom_field_custom_fieldset.php +++ b/database/migrations/2015_09_21_235926_create_custom_field_custom_fieldset.php @@ -13,7 +13,6 @@ class CreateCustomFieldCustomFieldset extends Migration public function up() { Schema::create('custom_field_custom_fieldset', function (Blueprint $table) { - { $table->bigIncrements('id'); $table->integer('custom_field_id'); $table->integer('custom_fieldset_id');