This commit is contained in:
jeremygan2021
2026-03-26 22:24:00 +08:00
parent 3ab71269d7
commit df261106da
4 changed files with 175 additions and 5 deletions

View File

@@ -1525,6 +1525,7 @@ def init_database():
cur.execute(f"ALTER TABLE {table} ADD COLUMN {col} {dtype}")
print(f"Added column {col} to {table}")
safe_add_column('gsdh_data', 'industry_company', 'VARCHAR(200)')
safe_add_column('gsdh_data', 'fee', 'VARCHAR(50)')
safe_add_column('gsdh_data', 'payment_channel', 'VARCHAR(50)')
safe_add_column('gsdh_data', 'out_trade_no', 'VARCHAR(100)')