diff --git a/docs/developer/migrations.md b/docs/developer/migrations.md index 183bd47..2d0ab46 100644 --- a/docs/developer/migrations.md +++ b/docs/developer/migrations.md @@ -10,7 +10,8 @@ First, do your changes in the code, change the model, add new tables, etc. Once you're done, you can create a new migration. ```bash -venv/bin/alembic -c argos/server/migrations/alembic.ini revision --autogenerate -m "migration reason" +venv/bin/alembic -c argos/server/migrations/alembic.ini revision \ + --autogenerate -m "migration reason" ``` Edit the created file to remove comments and adapt it to make sure the migration is complete (Alembic is not powerful enough to cover all the corner cases).