0
Corrigé

Migration script error - DROP NOT NULL versus SET NOT NULL

Stéphan Doucet il y a 7 ans mis à jour par anonymous il y a 7 ans 3

If I modify a column of a table to allow NULL, the migration script generate this :


ALTER TABLE "myTable"

ALTER "myColumn" SET NOT NULL;


Instead of :


ALTER TABLE "myTable"

ALTER "myColumn" DROP NOT NULL;

Prévu

You're right, it's a bug. We'll fix it soon.

Corrigé

It's fixed now. Thanks for reporting this issue.