badaso
badaso copied to clipboard
Database management - Impossible to reset to "Not nullable"
We can create a table with a field set as nullable.
Later, we cannot change this to "Not nullable" even if there is no Null data.
Badaso version : 2.9.11
Exemple of migration generated for the change :
$table->text('color')->charset('')->collation('')->change();
should be :
$table->text('color')->nullable(false)->charset('')->collation('')->change();