From e3346bd4fb8c6ccb0e0c958bb0cd6127e0d63fc6 Mon Sep 17 00:00:00 2001 From: Bert Constantin Date: Mon, 25 Jan 2010 16:47:28 +0100 Subject: [PATCH] move test db to /var/tmp/ --- settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.py b/settings.py index 3587fe2..2def868 100644 --- a/settings.py +++ b/settings.py @@ -10,7 +10,7 @@ ADMINS = ( MANAGERS = ADMINS DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. -DATABASE_NAME = '/tmp/django-polymorphic-test-db.sqlite3' # Or path to database file if using sqlite3. +DATABASE_NAME = '/var/tmp/django-polymorphic-test-db.sqlite3' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3.