diff options
author | Nishanth Amuluru | 2011-01-08 12:24:21 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2011-01-08 12:24:21 +0530 |
commit | 5f565327267a9d7712bf2f299828785caf953631 (patch) | |
tree | f0ebde599ee8a797ad068d55f882daef5796c329 | |
parent | 39eaff43d6e1edf61e35d3081ebbdf9a470f76da (diff) | |
download | pytask-5f565327267a9d7712bf2f299828785caf953631.tar.gz pytask-5f565327267a9d7712bf2f299828785caf953631.tar.bz2 pytask-5f565327267a9d7712bf2f299828785caf953631.zip |
renamed the db and removed taggind as of now
-rwxr-xr-x | pytask/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pytask/settings.py b/pytask/settings.py index c692fc7..c38541e 100755 --- a/pytask/settings.py +++ b/pytask/settings.py @@ -12,7 +12,7 @@ MANAGERS = ADMINS DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': './pytask/pytask.db', # Or path to database file if using sqlite3. + 'NAME': './pytask/db.db', # Or path to database file if using sqlite3. 'USER': '', # Not used with sqlite3. 'PASSWORD': '', # Not used with sqlite3. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. @@ -91,7 +91,7 @@ INSTALLED_APPS = ( 'django.contrib.sites', 'django.contrib.messages', 'registration', - 'tagging', + #'tagging', 'pytask.profile', # Uncomment the next line to enable the admin: 'django.contrib.admin', |