# Generic single-database configuration.

## Creating a new migration

1. Install alembic (preferably in you virtual environment)

```
$ pip install alembic
```
2. Generate a new revision

```
$ alembic revision [-m <message>]
```

3. Edit the files created in step `2.` with the necessary commands in `upgrade()` and `downgrade()` functions

    Note: You can look at example in `migrations/versions/`
