mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
6b6c991ad4
Summary: See PHI1023. Ref T7607. Occasionally, companies need their billing address (or some other custom text) to appear on invoices to satisfy process or compliance requirements. Allow accounts to have a custom "Billing Name" and a custom "Billing Address" which appear on invoices. Test Plan: {F6134707} Reviewers: amckinley Reviewed By: amckinley Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T7607 Differential Revision: https://secure.phabricator.com/D19979
3 lines
180 B
SQL
3 lines
180 B
SQL
ALTER TABLE {$NAMESPACE}_phortune.phortune_account
|
|
ADD billingName VARCHAR(255) NOT NULL COLLATE {$COLLATE_TEXT},
|
|
ADD billingAddress LONGTEXT NOT NULL COLLATE {$COLLATE_TEXT};
|