[manual] Change references to the humbug_test user, schema, and database to zulip_test

This requires no changes in production, but is tagged as manual to
remind developers that they need to edit and run the tools/migrate-db
script to fix up their local database instances.

(imported from commit fbf764fb61592ef994d6d2ad56edad65ff01f14b)
This commit is contained in:
Zev Benjamin
2013-10-25 22:24:40 -04:00
parent 7b6f6823a5
commit cdcbe61cb0
3 changed files with 14 additions and 15 deletions

View File

@@ -1,13 +1,13 @@
from settings import *
import os
DATABASES["default"] = {"NAME": "humbug_test",
"USER": "humbug_test",
DATABASES["default"] = {"NAME": "zulip_test",
"USER": "zulip_test",
"PASSWORD": "xxxxxxxxxxxx",
"HOST": "localhost",
"SCHEMA": "humbug",
"SCHEMA": "zulip",
"ENGINE": "django.db.backends.postgresql_psycopg2",
"TEST_NAME": "django_humbug_tests",
"TEST_NAME": "django_zulip_tests",
"OPTIONS": { },}
@@ -39,7 +39,7 @@ TUTORIAL_ENABLED = False
# Disable use of memcached for caching
CACHES['database'] = {
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
'LOCATION': 'humbug-database-test-cache',
'LOCATION': 'zulip-database-test-cache',
'TIMEOUT': 3600,
'OPTIONS': {
'MAX_ENTRIES': 100000