mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
629 B
22 lines
629 B
10 years ago
|
class LegacyRouter(object):
|
||
|
|
||
|
def db_for_read(self, model, **hints):
|
||
|
if model._meta.app_label == 'legacy':
|
||
|
return 'legacy'
|
||
|
return None
|
||
|
|
||
|
def db_for_write(self, model, **hints):
|
||
|
if model._meta.app_label == 'legacy':
|
||
|
return 'legacy'
|
||
|
return None
|
||
|
|
||
|
def allow_relation(self, obj1, obj2, **hints):
|
||
|
if obj1._meta.app_label == 'legacy' and obj2._meta.app_label == 'legacy':
|
||
|
return True
|
||
|
return None
|
||
|
|
||
|
def allow_migrate(self, db, model):
|
||
10 years ago
|
if model._meta.app_label in ['legacy', 'pglegacy']:
|
||
10 years ago
|
return False
|
||
|
return None
|