| # | Column Name | Nullable | Data Type | Max Length | Description |
|---|---|---|---|---|---|
| 1 | login_id | bigint | 0 | The primary key of this table, which is also a serial field. | |
| 2 | user_id | integer | 0 | Foreign key to the table office.users. | |
| 3 | office_id | integer | 0 | Foreign key to the table office.offices. | |
| 4 | browser | character varying | 500 | The name of the broser used to run the application. | |
| 5 | ip_address | character varying | 50 | The IP address of the of the computer network used. | |
| 6 | login_date_time | timestamp with time zone | 0 | ||
| 7 | remote_user | character varying | 50 | ||
| 8 | culture | character varying | 12 |
| # | Column Name | Key Name | References |
|---|---|---|---|
| 2 | user_id | logins_user_id_fkey | office.users.user_id |
| 3 | office_id | logins_office_id_fkey | office.offices.office_id |
| Index Name | Owner | Access Method | Definition | Description |
|---|---|---|---|---|
| logins_pkey | postgres | btree | login_id |
| Constraint Name | Description |
|---|
| # | Column Name | Default |
|---|---|---|
| 1 | login_id | nextval('audit.logins_login_id_seq'::regclass) |
| 6 | login_date_time | now() |
| Trigger Name | Targets | On Event | Timing | Condition | Order | Orientation | Description |
|---|