Hello. Is there a way to log MySQL ALTER/CREATE TABLE statements so that I might use those logs as migration queries when deploying? Basically when I modify an entity on the development server, let's say I add or rename a column, I don't want to replace all the rows (ie import a mysql dump) on the staging server, I just want to alter the table on the staging server, and keep its existing rows.
Is this possible somehow?
Thanks.
Is this possible somehow?
Thanks.
Comment