Update home authored by Lars Florian Meiendresch's avatar Lars Florian Meiendresch
...@@ -237,11 +237,11 @@ AUTH_GITHUB=1 ...@@ -237,11 +237,11 @@ AUTH_GITHUB=1
We employ Alembic to streamline our MariaDB database migrations in the development process. We employ Alembic to streamline our MariaDB database migrations in the development process.
To generate a new migration script, execute: To generate a new migration script for version `0.0.1`, execute:
```` ````
cd src cd src
alembic revision --autogenerate -m v<version> alembic revision --autogenerate -m v0.0.1
```` ````
To apply all pending migrations and update your database to the latest schema, execute the following steps: To apply all pending migrations and update your database to the latest schema, execute the following steps:
... ...
......