#ARC-27 fix database name

remotes/origin/setup
Mukhtar 10 years ago
parent b96c34584c
commit 2ce6c75793
  1. 2
      archilance/settings/base.py
  2. 2
      chat/testapp.py

@ -111,7 +111,7 @@ WSGI_APPLICATION = 'archilance.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'archilance2',
'NAME': 'archilance',
'USER': 'postgres',
'PASSWORD': 'postgres',
'HOST': 'localhost',

@ -92,7 +92,7 @@ if __name__ == '__main__':
ioloop = IOLoop.instance()
application.db = momoko.Pool(
dsn='dbname=archilance2 user=postgres password=postgres host=localhost',
dsn='dbname=archilance user=postgres password=postgres host=localhost',
size=1,
ioloop=ioloop,
)

Loading…
Cancel
Save