Is your feature request related to a problem? Please describe.
The drop_tables and create_tables cli functions drop and create tables from the base.metadata, this does not delete the alembic_migrations table. Hence if we want to perform ether_sql sql upgrade after ether_sql drop_tables upgrade will not happen.
Describe the solution you'd like
Remove the cli functions ether_sql sql create_tables and ether_sql sql upgrade and point them to the new function.
Remove alembic_migrations table while using ether_sql sql drop_tables
Add appropriate docs in the readme and installation section
Is your feature request related to a problem? Please describe. The
drop_tables
andcreate_tables
cli functions drop and create tables from thebase.metadata
, this does not delete the alembic_migrations table. Hence if we want to performether_sql sql upgrade
afterether_sql drop_tables
upgrade will not happen.Describe the solution you'd like
ether_sql sql create_tables
andether_sql sql upgrade
and point them to the new function.alembic_migrations
table while usingether_sql sql drop_tables