aafd Posted March 5, 2017 at 03:59 PM Report Share #602878 Posted March 5, 2017 at 03:59 PM como é que removo este aviso? C:\Python3\lib\site-packages\flask_sqlalchemy\__init__.py:839: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning. 'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and ' segue o meu código from flask import Flask from flask_sqlalchemy import SQLAlchemy app = Flask(__name__) app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///base.db' db = SQLAlchemy(app) #################################################################### class User(db.Model): id = db.Column(db.Integer, primary_key=True) username = db.Column(db.String(80), unique=True) email = db.Column(db.String(120), unique=True) def __init__(self, username, email): self.username = username self.email = email def __repr__(self): return '<User %r>' % self.username ##################################################################### if __name__ == '__main__': db.create_all() Link to comment Share on other sites More sharing options...
M6 Posted March 6, 2017 at 10:00 AM Report Share #602909 Posted March 6, 2017 at 10:00 AM Eu diria que se tivesses lido o "copy-paste" que fizeste terias visto lá a resposta: "Set it to True or False to suppress this warning."... 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now