diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-03-31 14:04:43 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-03-31 15:12:38 (GMT) |
commit | 85f73af7958939a208ce15d3f52937e1a65f3856 (patch) | |
tree | 718ec5ac4c3767c151a216641541d96cd5823ca3 /nop | |
parent | 2ec0ff18396c948b0f1fa9966aeab89bde97cd65 (diff) |
migrations for database nop should only be done on nop database
Diffstat (limited to 'nop')
-rw-r--r-- | nop/dbrouter.py | 5 | ||||
-rw-r--r-- | nop/migrations/0001_initial.py | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/nop/dbrouter.py b/nop/dbrouter.py new file mode 100644 index 0000000..fd8aaad --- /dev/null +++ b/nop/dbrouter.py @@ -0,0 +1,5 @@ +class NopRouter(object): + def allow_migrate(self, db, app_label, model_name=None, **hints): + if app_label == 'nop': + return db == 'nop' + return None diff --git a/nop/migrations/0001_initial.py b/nop/migrations/0001_initial.py index 200241b..67a04e8 100644 --- a/nop/migrations/0001_initial.py +++ b/nop/migrations/0001_initial.py @@ -6,6 +6,8 @@ from django.db import migrations, models class Migration(migrations.Migration): + app_label = 'nop' + dependencies = [ ] |