Table Data dictionary report - system_settings

Generated: 2018-10-18 8:09:33 AM
Server: PostgreSQL 9.3 (localhost:5432)
Database: datadict_donotremove
Schema: public
Notes:

Table to control system settings and values

Columns

Name Data type Not Null? Primary key? Default Comment
key character varying(128) Yes No Key for setting to control on this record
type smallint No No Internal use
num_data bigint No No Large number to store on this record
curr_data numeric(15,5) No No Decimal numeric data to store on this record
txt_data character varying(255) No No Text data to store on this record
_dbversion integer No No Program version that last modified this record
_created timestamp without time zone No No UTC Date and time record was created
_created_by character varying(3) No No User initials that created this record
_modified timestamp without time zone No No UTC Date and time this record was last modified
_modified_by character varying(3) No No User initials that last modified this record
id integer Yes Yes nextval('system_settings_id_seq'::regclass) Unique identifier
user_id integer No No Identifier from system_users_base.id related to this record

Constraints

Name Type Definition Comment
system_settings_pkey Primary key (id)
system_settings_user_id_fkey Foreign key (user_id) REFERENCES public.system_users_base (id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE CASCADE

Report generated by pgAdmin3 LTS by BigSQL