From 2925c265c6547ba628296cff3c50a2de775b4d61 Mon Sep 17 00:00:00 2001 From: Basyc <12016870+basyc@user.noreply.gitee.com> Date: Mon, 6 Jan 2025 05:30:01 +0000 Subject: [PATCH] update mooc/models/mc.py. Signed-off-by: Basyc <12016870+basyc@user.noreply.gitee.com> --- mooc/models/mc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mooc/models/mc.py b/mooc/models/mc.py index 881951d..2584e3f 100644 --- a/mooc/models/mc.py +++ b/mooc/models/mc.py @@ -20,7 +20,7 @@ class McCreditsRecharge(Base): backtype = Column(SmallInteger, nullable=False) class McCashRecord(Base): - __tablename__ = 'mc_cash_record' + __tablename__ = 'ims_mc_cash_record' id = Column(Integer, primary_key=True, index=True) uniacid = Column(Integer, nullable=False) @@ -41,7 +41,7 @@ class McCashRecord(Base): trade_type = Column(String(20), nullable=False) class McChatsRecord(Base): - __tablename__ = 'mc_chats_record' + __tablename__ = 'ims_mc_chats_record' id = Column(Integer, primary_key=True, index=True) uniacid = Column(Integer, nullable=False)