config.net_access_level

Patron Network Access level

This will be used to inform the in-library firewall of how much internet access the using patron should be allowed.

Columns

Column Type Nullable Default Notes

id PK

integer

No

nextval('config.net_access_level_id_seq'::regclass)

name

text

No

Primary Key

(id)

Unique Constraints

  • net_access_level_name_key: (name)

Indexes

Index Method Definition

net_access_level_pkey PK

btree

CREATE UNIQUE INDEX net_access_level_pkey ON config.net_access_level USING btree (id)

net_access_level_name_key UNIQUE

btree

CREATE UNIQUE INDEX net_access_level_name_key ON config.net_access_level USING btree (name)

Referenced By

The following tables have foreign keys pointing to config.net_access_level (1 referencing table(s)):

Table Referencing Column(s) Referenced Column(s) Constraint

actor.usr

net_access_level

id

usr_net_access_level_fkey