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.
This commit is contained in:
Brady Wetherington 2022-05-09 11:56:05 -07:00 committed by GitHub
parent dfd4d54433
commit 5357b1fa10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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');