Re: initial data 'manage.py' question

2007-10-30 Thread Russell Keith-Magee
On 10/30/07, cjl <[EMAIL PROTECTED]> wrote: > > If I then add additional data to 'account.sql', is there a way to re- > load this updated initial data? Not through manage.py. You could always just pipe account.sql into your sql prompt - essentially, that's all Django is doing anyway. > Should I

initial data 'manage.py' question

2007-10-30 Thread cjl
I have a project named 'checkbook' with a single application named 'ledger', using sqlite3 for a database. The ledger application has two models, 'account' and 'transaction'. In the ledger subdirectory I have a directory named 'sql', which contains a file named 'account.sql'. When I run 'python