mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-24 04:03:34 -08:00
Make default custom field value null
This commit is contained in:
parent
102f567cb5
commit
5a6b8bb856
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue