Browse Source

Merge pull request #149 from mitodl/master

Added deterministic handling of sqlite database location
pull/154/head
Pēteris Caune 7 years ago
committed by GitHub
parent
commit
2338f6e4aa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      hc/settings.py

+ 1
- 1
hc/settings.py View File

@ -84,7 +84,7 @@ TEST_RUNNER = 'hc.api.tests.CustomRunner'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': './hc.sqlite',
'NAME': '{0}/hc.sqlite'.format(BASE_DIR),
}
}


Loading…
Cancel
Save