Re: DB: working with databases

2011-09-27 Thread Uros Trebec
You can upgrade the "inspectdb" result with Django Autoadmin ( https://github.com/bancek/django-autoadmin ) which generates necessary basic AdminModel classes on the fly, without the need for manual definition and/or Django-specific DB tables (auth, for example). This way you can be up and running

Re: DB: working with databases

2011-09-25 Thread Xavier Ordoquy
Le 26 sept. 2011 à 01:48, Russell Keith-Magee a écrit : > On Mon, Sep 26, 2011 at 12:13 AM, Xavier Ordoquy wrote: >> Hi, >> Database will be better designed if you let django orm create them first and >> you add your tuning after. >> However, you can still work with non Django generated database

Re: DB: working with databases

2011-09-25 Thread Russell Keith-Magee
On Mon, Sep 26, 2011 at 12:13 AM, Xavier Ordoquy wrote: > Hi, > Database will be better designed if you let django orm create them first and > you add your tuning after. > However, you can still work with non Django generated database. > django-extensions application even provides an inspectdb tha

Re: DB: working with databases

2011-09-25 Thread Xavier Ordoquy
Hi, Database will be better designed if you let django orm create them first and you add your tuning after. However, you can still work with non Django generated database. django-extensions application even provides an inspectdb that will guess most of your models from the database schema. Re