DB Migrations #67

Merged
konrad merged 44 commits from feature/migrations into master 2019-03-29 17:54:36 +00:00
Showing only changes of commit e63bc7bb09 - Show all commits

View File

@ -20,6 +20,7 @@ In general, this api repo has the following structure:
* `log` * `log`
* `mail` * `mail`
* `metrics` * `metrics`
* `migration`
* `models` * `models`
* `red` * `red`
* `routes` * `routes`
@ -71,6 +72,13 @@ This package handles all mail sending. To learn how to send a mail, see [sending
This package handles all metrics which are exposed to the prometheus endpoint. This package handles all metrics which are exposed to the prometheus endpoint.
To learn how it works and how to add new metrics, take a look at [how metrics work]({{< ref "../practical-instructions/metrics.md">}}). To learn how it works and how to add new metrics, take a look at [how metrics work]({{< ref "../practical-instructions/metrics.md">}}).
### migration
This package handles all migrations.
All migrations are stored and executed here.
To learn more, take a look at the [migrations docs]({{< ref "../development/migrations.md">}}).
### models ### models
This is where most of the magic happens. This is where most of the magic happens.