| # | Column Name | Nullable | Data Type | Max Length | Description |
|---|---|---|---|---|---|
| 1 | lock_out_id | bigint | 0 | The primary key of this table, which is also a serial field. | |
| 2 | user_id | integer | 0 | ||
| 3 | lock_out_time | timestamp with time zone | 0 | ||
| 4 | lock_out_till | timestamp with time zone | 0 |
| # | Column Name | Key Name | References |
|---|---|---|---|
| 2 | user_id | lock_outs_user_id_fkey | office.users.user_id |
| Index Name | Owner | Access Method | Definition | Description |
|---|---|---|---|---|
| lock_outs_pkey | postgres | btree | lock_out_id |
| Constraint Name | Description |
|---|
| # | Column Name | Default |
|---|---|---|
| 1 | lock_out_id | nextval('policy.lock_outs_lock_out_id_seq'::regclass) |
| 3 | lock_out_time | now() |
| 4 | lock_out_till | (now() + '00:05:00'::interval) |
| Trigger Name | Targets | On Event | Timing | Condition | Order | Orientation | Description |
|---|