I'm using Vapor 3 for some server-side Swift, with the Fluent add-in for handling database/model management, with MySQL underneath.
I'm working in development and wanted to force the migrator to recreate a table, so I went into mysql on the command line and did:
mysql> drop table SomeTableName;
However, re-running, the migration doesn't re-create the table. It has a zillion columns and lots of constraints, so I don't really want to do it manually.