Enable migrations as required by Django 1.8+
Django 1.8+ won't let an app without migrations depend on django.contrib.auth models, which is migrations-enabled. Django will create the legacy tables first and there will be a database error. This commit add basic migrations support in Postorius by following: https://docs.djangoproject.com/en/1.8/topics/migrations/#adding-migrations-to-apps |
---|
|
src/postorius/migrations/0001_initial.py 0 → 100644 |
---|
src/postorius/migrations/__init__.py 0 → 100644 |
---|