which strike me as a bit... short. Your demo data (in bootstrap/demo.ini) thinks so too, since it overflows the email field (len("user@blinktrade.com") is > 15).
My suggested fix is to make phone numbers 30 characters and skype and email 254 characters. I could submit a PR, but I don't know how you guys are doing schema change management so didn't want to trample on it and risk messing with someone's live database.
Also, the name field in DepositMethods should likely be increased to 30; the current 15 is overflowed by demo.ini's usps_money_order.
Currently Broker has:
which strike me as a bit... short. Your demo data (in
bootstrap/demo.ini
) thinks so too, since it overflows the email field (len("user@blinktrade.com")
is > 15).My suggested fix is to make phone numbers 30 characters and skype and email 254 characters. I could submit a PR, but I don't know how you guys are doing schema change management so didn't want to trample on it and risk messing with someone's live database.
Also, the
name
field in DepositMethods should likely be increased to 30; the current 15 is overflowed bydemo.ini
'susps_money_order
.