Re: [web2py] pydal metadata in db

2018-09-02 Thread Carlos Cesar Caballero Díaz
I like it. Greetings. El 02/09/18 a las 14:08, Massimo Di Pierro escribió: We you may know web2py has the ability to store table metadata in DB: from gluon.dal import InDBMigrator db = DAL(myconf.get('db.uri'), adapter_args=dict(migrator=InDBMigrator)) This is better for scalability as there

[web2py] pydal metadata in db

2018-09-02 Thread Massimo Di Pierro
We you may know web2py has the ability to store table metadata in DB: from gluon.dal import InDBMigrator db = DAL(myconf.get('db.uri'), adapter_args=dict(migrator=InDBMigrator)) This is better for scalability as there is no filsystem IO. How do people feel with the following: - make the above th