diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-21 16:16:45 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-21 16:16:45 +0200 |
commit | e2541a5b4dfb0425b06748e6f31d5ca24eadd376 (patch) | |
tree | 07221e5e0f334676280a0f25ac1714412626453c /UPGRADE.md | |
parent | 78d44641108243175e81c13d8853bf03867df299 (diff) | |
download | Ishtar-e2541a5b4dfb0425b06748e6f31d5ca24eadd376.tar.bz2 Ishtar-e2541a5b4dfb0425b06748e6f31d5ca24eadd376.zip |
Add DB UPGRADE instructions
Diffstat (limited to 'UPGRADE.md')
-rw-r--r-- | UPGRADE.md | 36 |
1 files changed, 12 insertions, 24 deletions
diff --git a/UPGRADE.md b/UPGRADE.md index b6c73a35f..cc92d4a16 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -13,29 +13,17 @@ Upgrade to ishtar sources and fake initial migrations. ``` cd <application-path> -./manage.py migrate --fake-initial -``` - - -TODO: what is not done in theses migrations with fake-initials: - +./manage.py migrate --fake admin +./manage.py migrate --fake auth +./manage.py migrate --fake contenttypes +./manage.py migrate --fake registration +./manage.py migrate --fake sites +./manage.py migrate --fake ishtar_common 0001_initial +./manage.py migrate --fake archaeological_operations 0003_views +./manage.py migrate --fake archaeological_files 0003_views +./manage.py migrate --fake archaeological_context_records 0004_views +./manage.py migrate --fake archaeological_finds 0003_views +./manage.py migrate --fake archaeological_warehouse 0002_auto_20170414_2123 +./manage.py migrate ``` -ishtar_common -0001_initial.py - -archaeological_context_records/migrations/: -0001_initial.py 0002_auto_20170414_2123.py 0003_auto_20170414_2123.py 0004_views.py -archaeological_files/migrations/: -0001_initial.py 0002_auto_20170414_2123.py 0003_views.py - -archaeological_finds/migrations/: -0001_initial.py 0002_auto_20170414_2123.py 0003_views.py - -archaeological_operations/migrations/: -0001_initial.py 0002_auto_20170414_2123.py 0003_views.py - -archaeological_warehouse/migrations/: -0001_initial.py 0002_auto_20170414_2123.py - -``` |