diff options
Diffstat (limited to 'UPGRADE.md')
-rw-r--r-- | UPGRADE.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/UPGRADE.md b/UPGRADE.md new file mode 100644 index 000000000..cc92d4a16 --- /dev/null +++ b/UPGRADE.md @@ -0,0 +1,29 @@ +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 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 +``` + |