Skip to content

accounts.auth_history

Description

Columns

Name Type Default Nullable Children Parents Comment
auth_history_id integer nextval('accounts.auth_history_auth_history_id_seq'::regclass) false
account_id integer false accounts.accounts
ip_address varchar(255) false
user_agent varchar(255) false
success boolean false
error_message varchar(255) true
created_at timestamp with time zone now() true
updated_at timestamp with time zone now() true

Constraints

Name Type Definition
auth_history_account_id_fkey FOREIGN KEY FOREIGN KEY (account_id) REFERENCES accounts.accounts(account_id)
auth_history_pkey PRIMARY KEY PRIMARY KEY (auth_history_id)

Indexes

Name Definition
auth_history_pkey CREATE UNIQUE INDEX auth_history_pkey ON accounts.auth_history USING btree (auth_history_id)

Relations

er


Generated by tbls