In my database I created using laravel migrations I have a column called celphone
that unfortunately I did not add the ->nullable()
attribute when I created it, now that the base is already in production I want to version this change in the table and add the column as nullable
so this information is not required.
In this case what is the structure of the up()
method in a migrations that modifies a column attribute?