On Saturday, October 15, 2016 at 12:07:34 PM UTC-4, Alfonso Serra wrote:
>
> Yes Stifan, but isnt the same thing?
>
> migrate = False disables migration for all tables
>
No, it sets the *default* migration behavior for all tables -- you can
override the default for any given table by setting its own "migrate"
argument.
If you want to disable migrations for most tables but not all, then do:
db = DAL(..., migrate=False)
Then, in tables where you want migrations:
db.define_table('mytable', ..., migrate=True)
Anthony
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.