Commit ca4c22d9 by Owo Sugiana

LinkAja tidak lagi membatasi biller_name hanya 200 karakter

1 parent 5f0da5b3
......@@ -46,7 +46,7 @@ class Rpc(Base):
# Penjelasan resp_code untuk audit sistem
resp_orig_msg = Column(Text)
# Nama wajib pajak
biller_name = Column(String(200))
biller_name = Column(Text)
# Dari payment response (Transaction ID)
ntp = Column(String(32))
# Dari bit 11, dibutuhkan untuk reversal
......
......@@ -31,6 +31,7 @@ setup(
license='PostgreSQL License',
packages=find_packages(),
install_requires=requires,
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!