I defined the following tables:
#########################################################################
## Address bookt:
#########################################################################
db.define_table('node',
....
migrate='node.table')
db.define_table('organization',
...
migrate=False)
twelve other table definitions
db.define_table('rating',
...
migrate=False)
#########################################################################
## Account:
#########################################################################
After saving the file, I clicked the 'database administration' button to
migrate table 'node', however, all 14 tables between the two comments were
migrated, despite migrate=False.
Tables after the 'account' comment were not migrated. Is this intended
behaviour?
Kind regards,
Annet
--