Commit f1ecc6d8 authored by pengxiong's avatar pengxiong

去掉重复ZhiboTheme表

parent 75132aad
...@@ -3667,41 +3667,6 @@ class ZhiboSign(Base, BaseModel): ...@@ -3667,41 +3667,6 @@ class ZhiboSign(Base, BaseModel):
deletetag = Column(String(3), comment='删除标识') deletetag = Column(String(3), comment='删除标识')
class ZhiboTheme(Base, BaseModel):
__tablename__ = 'zhibo_theme'
id = Column(String(64), primary_key=True, comment='唯一主键')
zt_name = Column(String(32), comment='主题名称')
zt_starttime = Column(DateTime, comment='开播时间,显示的开始时间')
zt_endtime = Column(DateTime, comment='结束时间,显示的结束时间')
zt_desc = Column(String(512), comment='描述,介绍')
zt_roomnum = Column(String(32))
create_time = Column(DateTime, comment='创建时间')
create_by = Column(String(64), comment='创建人')
update_time = Column(DateTime, comment='修改时间')
update_by = Column(String(64), comment='修改人')
deletetag = Column(String(3), comment='删除标识')
zt_status = Column(Text, comment='直播间状态')
zt_backimg = Column(String(128), comment='直播背景图,封面')
share_pattern = Column(INTEGER(3), comment='分享模式')
zt_img = Column(String(128), comment='缩略图')
zt_iszhibo = Column(String(3), comment='是否含直播')
zt_proid = Column(String(64), comment='关联产品')
zt_uname = Column(String(128), comment='培训人')
zt_flag = Column(String(3), comment='参与人开放标识')
org_id = Column(String(64), comment='机构ID')
zt_password = Column(String(8), comment='密码')
zt_label = Column(String(1024), comment='直播标签')
zt_userids = Column(Text, comment='参与人')
zt_mute = Column(String(3), comment='是否静音 0:否 1:是')
zt_type = Column(String(64), comment='标签')
zt_appointment_nums = Column(INTEGER(8))
zt_info = Column(Text)
zt_qrcode = Column(String(256))
zt_fuli = Column(Text)
zt_cardinal = Column(INTEGER(11), comment='直播基数')
class ZhiboUser(Base, BaseModel): class ZhiboUser(Base, BaseModel):
__tablename__ = 'zhibo_users' __tablename__ = 'zhibo_users'
......
This diff is collapsed.
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