Removed first()

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-04-06 12:08:51 +01:00
parent 01342ca266
commit 4b255ada70

View file

@ -14,7 +14,7 @@ class CreateCustomFieldCustomFieldset extends Migration {
{
Schema::create('custom_field_custom_fieldset', function(Blueprint $table)
{
$table->bigIncrements('id')->first();
$table->bigIncrements('id');
$table->integer('custom_field_id');
$table->integer('custom_fieldset_id');
$table->integer('order');