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:
parent
dfd4d54433
commit
5357b1fa10
1 changed files with 0 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Reference in a new issue