[EMAIL PROTECTED] написав: > Thanks a lot for your response? How might I do the ALTER TABLE - I'm > not very familiar with SQL!
Probably it would be best for you, if you learn SQL, at least to the level you can do 'alter'. basically its simple: 1. execute ./manage.py sql <AppName> (see plain SQL at this stop) 2. Copy with mouse the field definition 3. Start DBshell: ./manage.py dbshell 4. Excute alter table <tablename> add column <column definition you copied to mouse buffer at step 2>; more info on 'alter' here: http://www.postgresql.org/docs/7.4/interactive/sql-altertable.html http://dev.mysql.com/doc/refman/5.0/en/alter-table.html Alex --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---