python

Sqlalchemy basic db migration commands Python

Basic sqlalchemy database migration commands that you can use while modifying the database in Python

python manage.py db init #INITIALIZE NEW MIGRATION
python manage.py db migrate #TO CREATE MIGRATION
python manage.py db upgrade #APPLY MIGRATION CHANGES ON DB
Was this helpful?