Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 366 Bytes

migration_guide.md

File metadata and controls

10 lines (10 loc) · 366 Bytes
#### To install Flask-Migrate  
pip install -r requirements.txt 
#### Initalize the flask-migrate files.
flask db init  
#### Make a migration, it is like commit it and a comment beside.
flask db migrate -m "Initial migration." # OR just add your comment right there  
#### Then apply your migration to the database, it is like push.
flask db upgrade