Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialamandae
15,727 PointsERROR FIX: flask_sqlalchemy - track modifications feature deprecation
Hi, all.
Just a head's up.
flask_sqlalchemy has deprecated the track modification feature. In the past it was set to "True", but now it is set to "None." My code continued to give error codes until I set it to either "True" or "False." (Thank you, Stack Overflow.)
models.py
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
import datetime
app = Flask(__name__)
# ***********line below needs to be added in this spot****************
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
#********************************************************************
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///pets.db'
db = SQLAlchemy(app)
class Pet(db.Model)
If you watch closely, you can actually see a warning for this come up in the video, but the teacher's code runs despite the warning. Mine didn't.
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsMarked as feedback.
Richard Andison
Python Development Techdegree Graduate 13,211 PointsThank you. Good catch!