Make default custom field value null

This commit is contained in:
snipe 2018-05-31 14:21:18 -07:00
parent 102f567cb5
commit 5a6b8bb856

View file

@ -17,7 +17,7 @@ class CreateCustomFieldDefaultValuesTable extends Migration
$table->increments('id');
$table->integer('asset_model_id');
$table->integer('custom_field_id');
$table->text('default_value')->nullable();
$table->text('default_value')->nullable()->default(null);
});
}