DATABASES = {
'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(DIR, 'django.sqlite3'), 'USER': '', 'PASSWORD': '', 'HOST': '', 'PORT': '', }, 'anil': { # this is our sample db, already created 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(DIR, 'anil_Sqlite.sqlite'), 'USER': '', 'PASSWORD': '', 'HOST': '', 'PORT': '', } }
No comments:
Post a Comment