On Wednesday, February 23, 2011 11:25:18 AM UTC-5, stargate wrote: > > Perfect I will look into this. Does web2py have a database > administration tool where you can create tables?
No, there is no database administration tool other than appadmin. But you don't need one to create tables. To create a table, just define the table using db.define_table() in a model file, and if the table doesn't already exist, web2py will create it for you. Read http://web2py.com/book/default/chapter/06, and particularly http://web2py.com/book/default/chapter/06#Migrations. Once web2py creates the new table, it will appear in appadmin along with the other tables. Anthony

