money.billable_xact_summary (view)

This is a database view, not a base table. It has no triggers, indexes, or FK constraints of its own. Querying this view may be more efficient than joining the underlying tables directly.

Columns

Column Type Nullable Notes

id

bigint

Yes

usr

integer

Yes

xact_start

timestamp with time zone

Yes

xact_finish

timestamp with time zone

Yes

total_paid

numeric

Yes

last_payment_ts

timestamp with time zone

Yes

last_payment_note

text

Yes

last_payment_type

name

Yes

total_owed

numeric

Yes

last_billing_ts

timestamp with time zone

Yes

last_billing_note

text

Yes

last_billing_type

text

Yes

balance_owed

numeric

Yes

xact_type

name

Yes

View Definition

 SELECT materialized_billable_xact_summary.id,
    materialized_billable_xact_summary.usr,
    materialized_billable_xact_summary.xact_start,
    materialized_billable_xact_summary.xact_finish,
    materialized_billable_xact_summary.total_paid,
    materialized_billable_xact_summary.last_payment_ts,
    materialized_billable_xact_summary.last_payment_note,
    materialized_billable_xact_summary.last_payment_type,
    materialized_billable_xact_summary.total_owed,
    materialized_billable_xact_summary.last_billing_ts,
    materialized_billable_xact_summary.last_billing_note,
    materialized_billable_xact_summary.last_billing_type,
    materialized_billable_xact_summary.balance_owed,
    materialized_billable_xact_summary.xact_type
   FROM money.materialized_billable_xact_summary;