summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/tbc_www/router.py')
-rw-r--r--python/tbc_www/router.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/python/tbc_www/router.py b/python/tbc_www/router.py
index aa16759..7a512fd 100644
--- a/python/tbc_www/router.py
+++ b/python/tbc_www/router.py
@@ -3,28 +3,28 @@
class TBCRouter(object):
def db_for_read(self, model, **hints):
- "Point all operations on zobcs models to 'zobcs'"
+ "Point all operations on tbc models to 'tbc'"
if model._meta.app_label == 'tbc_www':
- return 'zobcs'
+ return 'tbc'
return 'default'
def db_for_write(self, model, **hints):
- "Point all operations on zobcs models to 'zobcs'"
+ "Point all operations on tbc models to 'tbc'"
if model._meta.app_label == 'tbc_www':
- return 'zobcs'
+ return 'tbc'
return 'default'
def allow_relation(self, obj1, obj2, **hints):
- "Allow any relation if a both models in zobcs app"
+ "Allow any relation if a both models in tbc app"
if obj1._meta.app_label == 'tbc_www' and obj2._meta.app_label == 'tbc_www':
return True
- # Allow if neither is zobcs app
+ # Allow if neither is tbc app
elif 'tbc_www' not in [obj1._meta.app_label, obj2._meta.app_label]:
return True
return False
def allow_migrate(self, db, model):
- if db == 'zobcs' or model._meta.app_label == "tbc_www":
+ if db == 'tbc' or model._meta.app_label == "tbc_www":
return False # we're not using syncdb on our legacy database
else: # but all other models/databases are fine
return True