You can also use the south application to manage migrations.
pip install south
Then add 'south' to the list of installed apps.
To start off you can do
./manage.py schemamigration --initial appname
./manage.py migrate appname
Then whenever you make a change to your models:
./manage.py schemamigra
You can have a look here for Django's docs on these...
https://docs.djangoproject.com/en/dev/ref/settings/
https://docs.djangoproject.com/en/dev/topics/files/
The media stuff are for where files are stored typically after upload.
So for example, there's the ImageField that you can use as a field o
Hi all,
I'm working on an app that will store gps coordinates from devices. That
information will come in every 5 or so minutes of each hour. So it's alot
of data. Any recommendations on how I should store this? Do I use multiple
databases and use say MongoDB or Couch for the storage of the poi
3 matches
Mail list logo