Commit 04cfe114 by Owo Sugiana

Field resp_mesg butuh 200 karakter sebagai batas maksimum dari LinkAja

1 parent 1505c84d
0.1.2 26-11-2020
----------------
- Field resp_mesg butuh 200 karakter sebagai batas maksimum dari LinkAja
0.1 6-11-2020
-------------
- Kali pertama
......@@ -16,6 +16,7 @@ Base = declarative_base()
# Tabel pertama saat ada request dari LinkAja
class Rpc(Base):
__tablename__ = 'linkaja_trx'
id = Column(Integer, primary_key=True) # Bill Ref
......@@ -43,7 +44,7 @@ class Rpc(Base):
# Penjelasan resp_code untuk pelanggan
resp_msg = Column(String(200))
# Penjelasan resp_code untuk audit sistem
resp_orig_msg = Column(String(200))
resp_orig_msg = Column(Text)
# Nama wajib pajak
biller_name = Column(String(200))
# Dari payment response (Transaction ID)
......
......@@ -38,5 +38,4 @@ setup(
'linkaja_inquiry = linkaja.scripts.inquiry:main',
],
}
)
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!