From c4808e2d119614b08e6a069dde28e8605c979799 Mon Sep 17 00:00:00 2001 From: Mathijs de Bruin <mathijs@mathijsfietst.nl> Date: Wed, 30 Nov 2016 18:40:15 +0200 Subject: [PATCH] Document better practises for migrations. --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1d4b8ac1d..20ec96656 100644 --- a/README.md +++ b/README.md @@ -75,11 +75,8 @@ Groups and their respective permissions are created using the management command ``` ### Create and run migrations -Now that everything is setup, we can setup the datastructures. This is a step you need to repeat -everytime the data structures change (Django should notify you of this): - +Now that everything is setup, we can setup the datastructures. ```shell -(scipostenv) $ ./manage.py makemigrations (scipostenv) $ ./manage.py migrate ``` @@ -89,3 +86,16 @@ You are now ready to run the development server: ```shell (scipostenv) $ ./manage.py runserver ``` + +## Maintaining database migratons +Every time fields in any of the models change, a [database migration](https://docs.djangoproject.com/en/1.10/topics/migrations/) +needs to be created and applied. The first documents a database change and its +inverse, the second actually changes the database. + +Make sure to commit the migration to GIT after applying it, so other developers +can use them. + +```shell +(scipostenv) $ ./manage.py makemigration +(scipostenv) $ ./manage.py migrate +``` -- GitLab