I can successfully generate a database model, however I can't seem to figure out how to populate the database with data.
I believe the error lies in the command I used to autogenerate
alembic -x data=true upgrade head
does not produce any data, though after looking at my generated file, there is nothing in data_upgrade() or data_downgrade().
The command I am using to generate an auto migration is
alembic revision --autogenerate -m "migration_objective"
This then upgrades head to what is expected, but with no data in any of the tables.
Am I missing an option flag? I can't seem to find documentation on additional flags to use at this stage.