Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (15 loc) · 564 Bytes

database-migrations.rst

File metadata and controls

27 lines (15 loc) · 564 Bytes

Database migrations

Add a new migration script

python3.5 src/manager.py db revision -m "comment about the changes"

Then edit appropriately the generated file.

Update the database to the last version

python3.5 src/manager.py db upgrade

See the history of the migrations on the current database

python3.5 src/manager.py db history