1
In my database I created using the Laravel Migrations I have a column called celphone
which unfortunately did not add the attribute ->nullable()
when I created it, now that the base is already in production I want to see this change in the table and add the column as nullable
so that this information is not mandatory.
In this case as the structure of the method up()
in a Migrations modifying a column attribute?