On 5/25/06, Siah <[EMAIL PROTECTED]> wrote:
> I am 7 months into coding a large django application. Due to needing
> extra bytea fields with my database, I started maintaining my own SQL
> instead of django-admin install app. Everytime I made changes to my
> model, I would take django-admin sqlall app and apply those changes.
> Its been a few days I've been trying to upgrade my django from 9.1 to
> 9.2. My biggest problem so far is how broken sqlall and sqlclear are.
>
> sqlall generates sql with tables out of order, thus my postgresql
> cannot create constraints. And sqlclear generates non-working sql.
>
> Furthermore, I needed django-admin init that would create initial
> tables before I manually add my own tables. Please give it back to me.
>
> What could make my day would be if there was a way for me to supply an
> alternate 'sql' for the CREATION of that specific model. It would save
> me a lot of time not going through my gizilioon tables everytime I made
> a change.

I guess I'm failing to see what's broken here... Have you considered
using the convenient raw-SQL hooks?

http://www.djangoproject.com/documentation/model_api/#providing-initial-sql-data

I'd suggest letting Django create the tables automatically, then you
do any ALTER TABLE statements in the SQL file hooks.

Also, there's no need to be homesick for "django-admin init", because
"django-admin syncdb" does the same thing but better. Even so, if you
need to install the Django contrib apps specifically, you can do
"django-admin install admin", "django-admin install contenttypes",
etc. Easy as pie.

Adrian

-- 
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to