diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-20 11:17:35 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-20 11:17:35 +0200 |
commit | 13a2e8ba081b15ff07065b812c4facdfab1cebfd (patch) | |
tree | acc33337b7fdfb682bcc14b9140478a1cabed3dd | |
parent | 2933ed398c26c883645aabdf14aa99535828819f (diff) | |
download | Ishtar-13a2e8ba081b15ff07065b812c4facdfab1cebfd.tar.bz2 Ishtar-13a2e8ba081b15ff07065b812c4facdfab1cebfd.zip |
Upgrade instructions (WIP)
-rw-r--r-- | UPGRADE.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/UPGRADE.md b/UPGRADE.md new file mode 100644 index 000000000..b6c73a35f --- /dev/null +++ b/UPGRADE.md @@ -0,0 +1,41 @@ +v1 to v2.0 +---------- + +Before upgrading to v2.0, update to the last v1 version. Then apply all +databases migrations: + +``` +cd <application-path> +./manage.py migrate +``` + +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: + +``` +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 + +``` |