Beispiel #1
0
    class News(db.Model):
        __tablename__ = "news"

        id = db.Column(db.Integer(), primary_key=True)
        profile = db.Column(JSON(), nullable=False, server_default="{}")
        visits = db.IntegerProperty(default=0)
Beispiel #2
0
    class News(db.Model):
        __tablename__ = 'news'

        profile = db.Column(JSON(), nullable=False, server_default='{}')
        visits = db.IntegerProperty(default=0)