Hello!
How can I make a migration that changes the structure of the table? Does not rewrite, but complements
For example:
migration 1.0.0
... public function morph() { try { $this->morphTable('user', [...]) } } ...
And then I want add column to table "user" in migration 1.0.1
Thanks.