diff --git a/.travis.yml b/.travis.yml index fe22185e17..448f12de7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,4 @@ before_script: - "pep8 --exclude=migrations --ignore=E402,W293,E501 InvenTree" script: - \ No newline at end of file + - python manage.py syncdb --noinput \ No newline at end of file diff --git a/InvenTree/InvenTree/settings.py b/InvenTree/InvenTree/settings.py index e0cc196543..8585f5b911 100644 --- a/InvenTree/InvenTree/settings.py +++ b/InvenTree/InvenTree/settings.py @@ -86,7 +86,7 @@ WSGI_APPLICATION = 'InvenTree.wsgi.application' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'NAME': os.path.join(BASE_DIR, 'inventree_db.sqlite3'), } }