Lars Ruoff
unread,Oct 6, 2011, 3:37:45 PM10/6/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
Hi,
i'm having the Django database set up like so:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'D:\Users\Max\Projects\my4x\data\my4x.db',
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for
localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for
default. Not used with sqlite3.
}
}
I see that the database contains a lot of Django-related stuff (tables
with auth_ and django_ prefixes).
Is there a way i can seperate the Django stuff from my apps model
database?
What I'd prefer is to have two different databases (files), with one
containing the Django stuff and the other my own models.
Reason is that i develop a game and the database stores the game state
for a given time step. Ideally, i would like to have a different game
database file for each time step so i can go back in time when i like.