Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

create_migration.sh 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/usr/bin/env bash
  2. #
  3. # Rather verbose and destructive script to create both South migrations and
  4. # the new native migrations. This will install and uninstall Django versions
  5. # in your virtualenv, only work with the default SQLite database, destroy that
  6. # database repeatedly
  7. pip uninstall Django South -y
  8. # Commit of the stable/1.7.x branch that contains fix for https://code.djangoproject.com/ticket/23041,
  9. # but doesn't suffer from https://code.djangoproject.com/ticket/23014
  10. pip install https://github.com/django/django/archive/88135a8cf7d587b88e47f1223cf01c7698b52b74.zip
  11. rm -f sites/sandbox/db.sqlite
  12. sites/sandbox/manage.py migrate
  13. sites/sandbox/manage.py makemigrations analytics checkout address shipping catalogue reviews partner basket payment offer order customer promotions search voucher wishlists
  14. pip uninstall Django -y
  15. pip install Django==1.6.5 South==1.0
  16. rm -f sites/sandbox/db.sqlite
  17. sites/sandbox/manage.py syncdb --noinput
  18. sites/sandbox/manage.py migrate
  19. sites/sandbox/manage.py schemamigration analytics --auto
  20. sites/sandbox/manage.py schemamigration checkout --auto
  21. sites/sandbox/manage.py schemamigration address --auto
  22. sites/sandbox/manage.py schemamigration shipping --auto
  23. sites/sandbox/manage.py schemamigration catalogue --auto
  24. sites/sandbox/manage.py schemamigration reviews --auto
  25. sites/sandbox/manage.py schemamigration partner --auto
  26. sites/sandbox/manage.py schemamigration basket --auto
  27. sites/sandbox/manage.py schemamigration payment --auto
  28. sites/sandbox/manage.py schemamigration offer --auto
  29. sites/sandbox/manage.py schemamigration order --auto
  30. sites/sandbox/manage.py schemamigration customer --auto
  31. sites/sandbox/manage.py schemamigration promotions --auto
  32. sites/sandbox/manage.py schemamigration search --auto
  33. sites/sandbox/manage.py schemamigration voucher --auto
  34. sites/sandbox/manage.py schemamigration wishlists --auto
  35. pip uninstall Django -y