There is no db.table.field.drop(). There is db.table.drop() which drops the entire table. Do not use crud. it is old.
On Thursday, 14 January 2016 16:29:18 UTC-6, Ron Chatterjee wrote: > > I haven't used crud for long time. I realize SQLFORM is the alternative. > What would be the crud.update alternative for this example? > > > @auth.requires_login() > def project_edit(): > selected_project = db.Project(request.args(0)) or > redirect(URL('show_project')) > form = crud.update(db.Project, selected_project, next = > 'show_project_summary/[id]') > return locals() > > > Same goes for crud.delete. Is it just db.table.field.drop()? > -- 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 web2py+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.