I have a post model like so:
class Post(db.Model): id = db.Column("id", db.Integer, primary_key=True) title = db.Column(db.String(100)) cont