We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following line gives an error:
flask-dance/flask_dance/consumer/storage/sqla.py
Line 41 in 70f79fd
When this was originally written, was there a reason to pass a python function instead of sqlalchemy func, like the following?
from sqlalchemy.sql import func ... created_at = Column(DateTime, default=func.now(), nullable=False)
(or even using server_default instead, but that requires a schema change to implement now)
server_default
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following line gives an error:
flask-dance/flask_dance/consumer/storage/sqla.py
Line 41 in 70f79fd
When this was originally written, was there a reason to pass a python function instead of sqlalchemy func, like the following?
(or even using
server_default
instead, but that requires a schema change to implement now)The text was updated successfully, but these errors were encountered: