The DAL seems to be acting up when I changed my project to a mysql
database. Specifically it was working perfectly fine on the sqlite
side, but now it keeps issuing the command:
"ALTER TABLE auth_user DROP COLUMN registration_id"
Then it always issues tickets concerning there not being a
registr
It's not clear from the book. but will a piece of code like :
"""
from gluon.tools import Service
service = Service()
def call():
session.forget()
return service()
@service.json
def submit(body, age, gender):
unique_id = insert_into_my_db(body, age, gender)
return dict(unique_id=
2 matches
Mail list logo