| Table: dbo.XactPay_Client_EIN_History | |||
| Table containing the EIN history for XactPay clients | |||
| Columns | |||
| Name | Type | Constraints | Description |
| xactpay_client_ein_history_KEY | int (4) | NOT NULL | Primary key for this table. |
| client_KEY | int (4) | NOT NULL | The associated client. |
| modified_date | datetime (8, 3) | NOT NULL | The date the EIN was changed. |
| previous_EIN | nvarchar (22) | NOT NULL | The previous EIN value before the change. |
| transmitted | bit (1) | NOT NULL | Whether or not this change has been transmitted to XactPay |
| Primary key | |||
| Name | Columns | Description | |
| PK_XactPay_Client_EIN_History | xactpay_client_ein_history_KEY | ||
| Unique constraints | |||
| Name | Columns | Description | |
| UK_XactPay_Client_EIN_History$client_KEY$modified_date$previous_EIN | client_KEY, modified_date, previous_EIN | ||
| Foreign keys | |||
| Name | Columns | Referenced table | Description |
| FK_XactPay_Client_EIN_History__Client__client_KEY | client_KEY | Client (client_KEY) | |