Database – Transaction Entity (transaction_entity)
Holds basic transaction information.
Column | Data Type | Column Info | Value Notes | Other |
id | int(11) | The id of the entity | ||
amount | decimal(11,2) | transaction amount | ||
balance | decimal(11,2) | transaction balance | ||
type | varchar(100) | transaction type | admin.transaction.* | |
description | varchar(500) | The description of the entity instance | ||
active | tinyint(1) | Whether or not the entity is active | 1 - yes, 0 - no | |
deleted | tinyint(1) | Whether or not the entity was deleted | 1 - yes, 0 - no | |
created | timestamp | Timestamp of when the entity was created | ||
lastUpdated | timestamp | Timestamp of when the entity was last updated | ||
effective_date | date | Effective Date |