Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def define_tables(self):
db = self.auth.db
db.define_table(
"oauth2",
Field("registrant_id", "reference auth_user"),
Field("client_secret"),
)
db.commit()
def define_tables(self):
db = self.auth.db
db.define_table(
"oauth2",
Field("registrant_id", "reference auth_user"),
Field("client_secret"),
)
db.commit()