Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments |
---|---|---|---|---|---|---|---|---|
id | bigserial | 19 | √ | nextval('money.payment_id_seq'::regclass) |
|
|
||
xact | int8 | 19 | null |
|
|
|||
payment_ts | timestamptz | 35,6 | now() |
|
|
|||
voided | bool | 1 | false |
|
|
|||
amount | numeric | 6,2 | null |
|
|
|||
note | text | 2147483647 | √ | null |
|
|
||
amount_collected | numeric | 6,2 | null |
|
|
|||
accepting_usr | int4 | 10 | null |
|
|
|||
cash_drawer | int4 | 10 | √ | null |
|
|
||
cc_number | text | 2147483647 | √ | null |
|
|
||
cc_processor | text | 2147483647 | √ | null |
|
|
||
cc_order_number | text | 2147483647 | √ | null |
|
|
||
approval_code | text | 2147483647 | √ | null |
|
|
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
credit_card_payment_pkey | Primary key | Asc | id |
money_credit_card_id_idx | Performance | Asc | id |
money_credit_card_payment_accepting_usr_idx | Performance | Asc | accepting_usr |
money_credit_card_payment_cash_drawer_idx | Performance | Asc | cash_drawer |
money_credit_card_payment_ts_idx | Performance | Asc | payment_ts |
money_credit_card_payment_xact_idx | Performance | Asc | xact |