mirror of
https://github.com/xfgryujk/blivechat.git
synced 2025-01-14 14:20:58 +08:00
12 lines
332 B
Python
12 lines
332 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
import sqlalchemy
|
||
|
|
||
|
import models.database
|
||
|
|
||
|
|
||
|
class BilibiliUser(models.database.OrmBase):
|
||
|
__tablename__ = 'bilibili_users'
|
||
|
uid = sqlalchemy.Column(sqlalchemy.Integer, primary_key=True)
|
||
|
avatar_url = sqlalchemy.Column(sqlalchemy.String(100))
|
||
|
update_time = sqlalchemy.Column(sqlalchemy.DateTime)
|