[sqlalchemy] Re: drop_all not working for me

2007-02-12 Thread Michael Bayer
drop_all() doesnt remove Table instances from the metadata. the Table object is a python object, it only represents your real database table. you may well want to call create_all() again using that same Table. On Feb 12, 3:20 pm, percious [EMAIL PROTECTED] wrote: See test case: from

[sqlalchemy] Re: drop_all not working for me

2007-02-12 Thread percious
On Feb 12, 3:49 pm, Michael Bayer [EMAIL PROTECTED] wrote: drop_all() doesnt remove Table instances from the metadata. the Table object is a python object, it only represents your real database table. you may well want to call create_all() again using that same Table. On Feb 12, 3:20

[sqlalchemy] Re: drop_all not working for me

2007-02-12 Thread Michael Bayer
not if you understood my previous reply, no. On Feb 12, 3:55 pm, percious [EMAIL PROTECTED] wrote: On Feb 12, 3:49 pm, Michael Bayer [EMAIL PROTECTED] wrote: drop_all() doesnt remove Table instances from the metadata. the Table object is a python object, it only represents your real