# | Column Name | Nullable | Data Type | Max Length | Description |
---|---|---|---|---|---|
1 | account_master_id | smallint | 0 | The primary key of this table, which is also a serial field. | |
2 | account_master_code | character varying | 3 | The unique alphanumeric code that generally abbreviates the value of account master name. | |
3 | account_master_name | character varying | 40 | The name of account master, which is also a unique field. | |
4 | normally_debit | boolean | 0 | Select "Yes" if the account has nature of Debit balance or vice-versa. | |
5 | parent_account_master_id | smallint | 0 | The name of account master, which is also a unique field. |
# | Column Name | Key Name | References |
---|---|---|---|
5 | parent_account_master_id | account_masters_parent_account_master_id_fkey | core.account_masters.account_master_id |
Index Name | Owner | Access Method | Definition | Description |
---|---|---|---|---|
account_masters_pkey | postgres | btree | account_master_id | |
account_master_parent_account_master_id_inx | postgres | btree | parent_account_master_id | |
account_master_name_uix | postgres | btree | upper(account_master_name::text) | |
account_master_code_uix | postgres | btree | upper(account_master_code::text) |
Constraint Name | Description |
---|
# | Column Name | Default |
---|---|---|
4 | normally_debit | false |
Trigger Name | Targets | On Event | Timing | Condition | Order | Orientation | Description |
---|