Commit 91c8d5a1 by Owo Sugiana

IsoReversal.tgl default

1 parent 9260c86c
......@@ -307,7 +307,7 @@ class IsoPayment(Base):
class IsoReversal(Base):
__tablename__ = 'bphtb_reversal'
id = Column(Integer, ForeignKey(IsoPayment.id), primary_key=True)
tgl = Column(DateTime(timezone=True), nullable=False)
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!