Table core.frequency_setups
Setup time interval of posting a transaction automatically.
# Column Name Nullable Data Type Max Length Description
1frequency_setup_idinteger0The primary key of this table, which is also a serial field.
2fiscal_year_codecharacter varying12Foreign key to the table core.fiscal_year.
3frequency_setup_codecharacter varying12
4value_datedate0
5frequency_idinteger0Foreign key to the table core.frequencies.
6audit_user_idinteger0Contains the id of the user who last inserted or updated the corresponding row.
7audit_tstimestamp with time zone0Contains the date and timestamp of the last insert or update action.

Foreign Keys

# Column Name Key Name References
2 fiscal_year_code frequency_setups_fiscal_year_code_fkey core.fiscal_year.fiscal_year_code
5 frequency_id frequency_setups_frequency_id_fkey core.frequencies.frequency_id
6 audit_user_id frequency_setups_audit_user_id_fkey office.users.user_id

Indices

Index Name Owner Access Method Definition Description
frequency_setups_pkey postgres btree frequency_setup_id
frequency_setups_frequency_setup_code_uix postgres btree upper(frequency_setup_code::text)
frequency_setups_value_date_key postgres btree value_date

Check Constraints

Constraint Name Description

Default Values

# Column Name Default
1 frequency_setup_id nextval('core.frequency_setups_frequency_setup_id_seq'::regclass)
7 audit_ts now()

Triggers

Trigger Name Targets On Event Timing Condition Order Orientation Description