- Add support for specifying a nullable field when baking a migration. You can now use a question mark after the field type to tell bake that you want this field to be nullable. Here is an example :
# `description` and `age` fields will be nullable
bin/cake bake migration CreatePerson name:string description:string? age:integer?
More information about baking migrations in the Cookbook