I've been creating tables using migrations per the documentation, and now I've rebuilt a section of my website and now I don't need one of my older tables.
I could:
A) Create a new migration file and tell it to drop the table in the "up" function, which doesn't make semantic sense, but does make sense from a procedural standpoint.
or
B) I can manually run a rollback on that specific migration, which does make sense semantically, but doesn't make sense procedurally and requires a manual action using CLI, meaning anyone using this software ever has extra steps unless I also remove the migration file, which now makes this not makes sense semantically, and if someone issued a reset there would be missing migrations.
Is there a better option that I'm missing?