nice info, viniclusban, btw,
First, because web2py recommends you don't mix validators with
db.define_table().

is it the best practice to not mix requires on the same time with field
create?
e.g.
db.define_table('category',
                Field('category'
                      )
                )
db.category.requires = IS_NOT_EMPTY()

is better than :

db.define_table('category',
                Field('category',
                      requires = IS_NOT_EMPTY()
                      )
                )

please give an advice or pointer about this?

thank you so much

On Sun, May 1, 2011 at 9:22 AM, Vinicius Assef <vinicius...@gmail.com>wrote:

> Buddies, I'd like to hear your oppinions about this post in my blog:
> http://bit.ly/mCH7rr
>
> --
> Vinicius Assef.
>

Reply via email to