Re: manage.py help message seems inaccurate

2008-02-16 Thread msoulier
On Feb 11, 8:02 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > This is correct - SQL for data fixtures won't be dumped. The error > message is a little misleading in this respect, as it refers to > initial data, not custom SQL. I've clarified the text in [7106]. > > As for the --interactiv

Re: manage.py help message seems inaccurate

2008-02-11 Thread Russell Keith-Magee
On Feb 12, 2008 6:58 AM, Jacob Kaplan-Moss <[EMAIL PROTECTED]> wrote: > > On 2/11/08, msoulier <[EMAIL PROTECTED]> wrote: > > When I ran sqlall with apps that have initial_data.json files, which > > syncdb does respect, the SQL for these were not dumped. > > That's because fixtures -- i.e. "initia

Re: manage.py help message seems inaccurate

2008-02-11 Thread Jacob Kaplan-Moss
On 2/11/08, msoulier <[EMAIL PROTECTED]> wrote: > When I ran sqlall with apps that have initial_data.json files, which > syncdb does respect, the SQL for these were not dumped. That's because fixtures -- i.e. "initial_data.json" -- aren't SQL; they're loaded using a different mechanism. The initi

manage.py help message seems inaccurate

2008-02-11 Thread msoulier
syncdb [--verbosity] [--interactive] Create the database tables for all apps in INSTALLED_APPS whose tables haven't already been created. python manage.py syncdb --interactive manage.py: error: no such option: --interactive sqlall [appname ...] Prints the CREATE TABLE, initial-da