Question 16
Consider the following sqlalchemy code and answer the given subquestions:
# models.pyfrom flask_sqlalchemy import SQLAlchemyfrom datetime import date
db = SQLAlchemy()
class GlassRepair(db.Model): __tablename__ = 'glass_repairs' id = db.Column(db.Integer, primary_key=True) broken_at = db.Column(db.Date, nullable=False) fixed_at = db.Column(db.Date, nullable=False) status = db.Column(db.String, nullable=False)