# -*- coding: utf-8 -*- """ authors_roles It defined the role of the CPPM authors. """ db.define_table("authors_roles", Field("role", "string", length=255, default="", notnull=True), migrate="authors_roles.table") db.authors_roles._before_delete.append(INHIBIT_CASCADE_DELETE) db.authors_roles._before_delete.append(dbui.INHIBIT_DELETE_UNDEF) db.authors_roles._before_update.append(dbui.INHIBIT_UPDATE_UNDEF)