mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
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
|
@ -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…
Reference in a new issue