summaryrefslogtreecommitdiff
path: root/UPGRADE.md
diff options
context:
space:
mode:
Diffstat (limited to 'UPGRADE.md')
-rw-r--r--UPGRADE.md36
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
-
-```