|
|
|
|
|
by indigo945
986 days ago
|
|
Just from my understanding from having read the linked website: yes, you do. "Applying the migration" doesn't actually do anything to the table, it just creates a new schema containing views over the old one, where the view for the table whose column you deleted hides the column. You can then try if your app still works when using accessing this schema instead of the old one. If you're happy, you can "complete" the migration, at which point only the table structure actually gets altered in a non-reversible way. |
|