Commit a06004a1 authored by Samuel Colvin's avatar Samuel Colvin

remove void comment

parent fffbdc24
...@@ -21,8 +21,7 @@ app.config['SQLALCHEMY_ECHO'] = True ...@@ -21,8 +21,7 @@ app.config['SQLALCHEMY_ECHO'] = True
db = SQLAlchemy(app) db = SQLAlchemy(app)
# Create user model. For simplicity, it will store passwords in plain text. # Create user model.
# Obviously that's not right thing to do in real world application.
class User(db.Model): class User(db.Model):
id = db.Column(db.Integer, primary_key=True) id = db.Column(db.Integer, primary_key=True)
first_name = db.Column(db.String(100)) first_name = db.Column(db.String(100))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment