22 lines
567 B
Python
22 lines
567 B
Python
|
class PaperworkRouter:
|
||
|
app_label = 'paperwork'
|
||
|
db = 'cms'
|
||
|
|
||
|
def db_for_read(self, model, **hints):
|
||
|
if model._meta.app_label == self.app_label:
|
||
|
return self.db
|
||
|
return None
|
||
|
|
||
|
def db_for_write(self, model, **hints):
|
||
|
if model._meta.app_label == self.app_label:
|
||
|
return self.db
|
||
|
return None
|
||
|
|
||
|
def allow_relation(self, obj1, obj2, **hints):
|
||
|
return None
|
||
|
|
||
|
def allow_migrate(self, db, app_label, model_name=None, **hints):
|
||
|
if db == self.db:
|
||
|
return False
|
||
|
return None
|