[web2py] Re: different table for every user

2016-06-18 Thread @brooks
Thanks Massimo. On Saturday, June 18, 2016 at 6:59:02 PM UTC+5:30, Massimo Di Pierro wrote: > > Do not make a new table for each user. Look instead at > db.define_table(..., auth.signature) so that each record known who created > it, and then you can filter all records by creator using a common

[web2py] Re: different table for every user

2016-06-18 Thread Massimo Di Pierro
Do not make a new table for each user. Look instead at db.define_table(..., auth.signature) so that each record known who created it, and then you can filter all records by creator using a common filter. On Saturday, 18 June 2016 07:47:42 UTC-5, @brooks wrote: > > Hi, > I am new to python as