Commit 4b2da74b by Owo Sugiana

Tambah IsoReversal

1 parent d112ec13
...@@ -401,3 +401,9 @@ class IsoPayment(Base): ...@@ -401,3 +401,9 @@ class IsoPayment(Base):
channel_id = Column(Integer, ForeignKey(Channel.id), nullable=False) channel_id = Column(Integer, ForeignKey(Channel.id), nullable=False)
bank_ip = Column(String(15), nullable=False) bank_ip = Column(String(15), nullable=False)
class IsoReversal(Base):
__tablename__ = 'pad_reversal'
id = Column(Integer, ForeignKey(IsoPayment.id), primary_key=True)
tgl = Column(DateTime(timezone=True), nullable=False, default=datetime.now)
iso_request = Column(String(1024), nullable=False)
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!