Best way is manually defining migration file names, all the table history
information and diffs are stored in /databases/xxx.table which is
randomly named.
You can do:
db.define_table('products',Field('name'),migrate='products.table')
In that way, when you need to purge the table inform
I called define_table to create a table "product". This worked fine.
Then I called executesql("DROP TABLE PRODUCT"). The product table
appears to have been dropped from the database. However when I run the
application again it fails in the model in at the define_table line
with "OperationalError: n
2 matches
Mail list logo