If you do
db=DAL(...., migrate_enabled=True) # default behavior
auth.enable_record_versioning(db)
db.define_table('something',...., migrate=False)
...
The migrate=False only affect the "something" table. If you change its
model that table will not migrate but associated archive table will.
If instead migrate_enabled=False, none of the tables will migrate.
On Tuesday, 15 January 2013 22:09:28 UTC-6, Rick Ree wrote:
>
> Hi,
>
> I would like to enable record versioning on an existing MySQL database in
> which all tables are managed manually (migrate=False). I am concerned about
> what happens if the structure of a table changes in db.define_table( ... ).
> Is the associated archive table changed to match accordingly?
>
> thanks,
> -Rick
>
--