Re: Models inheritance in django: how to change PK "_ptr_id" on "id"?

2012-02-09 Thread Jean-Mark
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

Re: Can anyone please explain the following settings?

2012-02-09 Thread Jean-Mark
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

Multiple databases or Redis/Stats/Graphite/Loggly

2012-05-02 Thread Jean-Mark
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