dump.sql
--
-- PostgreSQL database dump
--
-- Dumped from database version 10.4
-- Dumped by pg_dump version 10.4
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
DROP DATABASE netbox;
--
-- Name: netbox; Type: DATABASE; Schema: -; Owner: postgres
--
CREATE DATABASE netbox WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'en_US.utf8' LC_CTYPE = 'en_US.utf8';
ALTER DATABASE netbox OWNER TO postgres;
\connect netbox
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(80) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO netbox;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.auth_group_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_group_id_seq OWNER TO netbox;
--
-- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.auth_group_id_seq OWNED BY public.auth_group.id;
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.auth_group_permissions (
id integer NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_group_permissions OWNER TO netbox;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.auth_group_permissions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_group_permissions_id_seq OWNER TO netbox;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.auth_group_permissions_id_seq OWNED BY public.auth_group_permissions.id;
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.auth_permission (
id integer NOT NULL,
name character varying(255) NOT NULL,
content_type_id integer NOT NULL,
codename character varying(100) NOT NULL
);
ALTER TABLE public.auth_permission OWNER TO netbox;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.auth_permission_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_permission_id_seq OWNER TO netbox;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.auth_permission_id_seq OWNED BY public.auth_permission.id;
--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.auth_user (
id integer NOT NULL,
password character varying(128) NOT NULL,
last_login timestamp with time zone,
is_superuser boolean NOT NULL,
username character varying(150) NOT NULL,
first_name character varying(30) NOT NULL,
last_name character varying(150) NOT NULL,
email character varying(254) NOT NULL,
is_staff boolean NOT NULL,
is_active boolean NOT NULL,
date_joined timestamp with time zone NOT NULL
);
ALTER TABLE public.auth_user OWNER TO netbox;
--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.auth_user_groups (
id integer NOT NULL,
user_id integer NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.auth_user_groups OWNER TO netbox;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.auth_user_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_user_groups_id_seq OWNER TO netbox;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.auth_user_groups_id_seq OWNED BY public.auth_user_groups.id;
--
-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.auth_user_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_user_id_seq OWNER TO netbox;
--
-- Name: auth_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.auth_user_id_seq OWNED BY public.auth_user.id;
--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.auth_user_user_permissions (
id integer NOT NULL,
user_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_user_user_permissions OWNER TO netbox;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.auth_user_user_permissions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.auth_user_user_permissions_id_seq OWNER TO netbox;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.auth_user_user_permissions_id_seq OWNED BY public.auth_user_user_permissions.id;
--
-- Name: circuits_circuit; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.circuits_circuit (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
cid character varying(50) NOT NULL,
install_date date,
commit_rate integer,
comments text NOT NULL,
provider_id integer NOT NULL,
type_id integer NOT NULL,
tenant_id integer,
description character varying(100) NOT NULL,
status smallint NOT NULL,
CONSTRAINT circuits_circuit_commit_rate_check CHECK ((commit_rate >= 0)),
CONSTRAINT circuits_circuit_status_check CHECK ((status >= 0))
);
ALTER TABLE public.circuits_circuit OWNER TO netbox;
--
-- Name: circuits_circuit_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.circuits_circuit_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.circuits_circuit_id_seq OWNER TO netbox;
--
-- Name: circuits_circuit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.circuits_circuit_id_seq OWNED BY public.circuits_circuit.id;
--
-- Name: circuits_circuittermination; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.circuits_circuittermination (
id integer NOT NULL,
term_side character varying(1) NOT NULL,
port_speed integer NOT NULL,
upstream_speed integer,
xconnect_id character varying(50) NOT NULL,
pp_info character varying(100) NOT NULL,
circuit_id integer NOT NULL,
interface_id integer,
site_id integer NOT NULL,
CONSTRAINT circuits_circuittermination_port_speed_check CHECK ((port_speed >= 0)),
CONSTRAINT circuits_circuittermination_upstream_speed_check CHECK ((upstream_speed >= 0))
);
ALTER TABLE public.circuits_circuittermination OWNER TO netbox;
--
-- Name: circuits_circuittermination_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.circuits_circuittermination_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.circuits_circuittermination_id_seq OWNER TO netbox;
--
-- Name: circuits_circuittermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.circuits_circuittermination_id_seq OWNED BY public.circuits_circuittermination.id;
--
-- Name: circuits_circuittype; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.circuits_circuittype (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.circuits_circuittype OWNER TO netbox;
--
-- Name: circuits_circuittype_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.circuits_circuittype_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.circuits_circuittype_id_seq OWNER TO netbox;
--
-- Name: circuits_circuittype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.circuits_circuittype_id_seq OWNED BY public.circuits_circuittype.id;
--
-- Name: circuits_provider; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.circuits_provider (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
asn bigint,
account character varying(30) NOT NULL,
portal_url character varying(200) NOT NULL,
noc_contact text NOT NULL,
admin_contact text NOT NULL,
comments text NOT NULL
);
ALTER TABLE public.circuits_provider OWNER TO netbox;
--
-- Name: circuits_provider_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.circuits_provider_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.circuits_provider_id_seq OWNER TO netbox;
--
-- Name: circuits_provider_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.circuits_provider_id_seq OWNED BY public.circuits_provider.id;
--
-- Name: dcim_consoleport; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_consoleport (
id integer NOT NULL,
name character varying(50) NOT NULL,
connection_status boolean,
cs_port_id integer,
device_id integer NOT NULL
);
ALTER TABLE public.dcim_consoleport OWNER TO netbox;
--
-- Name: dcim_consoleport_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_consoleport_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_consoleport_id_seq OWNER TO netbox;
--
-- Name: dcim_consoleport_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_consoleport_id_seq OWNED BY public.dcim_consoleport.id;
--
-- Name: dcim_consoleporttemplate; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_consoleporttemplate (
id integer NOT NULL,
name character varying(50) NOT NULL,
device_type_id integer NOT NULL
);
ALTER TABLE public.dcim_consoleporttemplate OWNER TO netbox;
--
-- Name: dcim_consoleporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_consoleporttemplate_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_consoleporttemplate_id_seq OWNER TO netbox;
--
-- Name: dcim_consoleporttemplate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_consoleporttemplate_id_seq OWNED BY public.dcim_consoleporttemplate.id;
--
-- Name: dcim_consoleserverport; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_consoleserverport (
id integer NOT NULL,
name character varying(50) NOT NULL,
device_id integer NOT NULL
);
ALTER TABLE public.dcim_consoleserverport OWNER TO netbox;
--
-- Name: dcim_consoleserverport_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_consoleserverport_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_consoleserverport_id_seq OWNER TO netbox;
--
-- Name: dcim_consoleserverport_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_consoleserverport_id_seq OWNED BY public.dcim_consoleserverport.id;
--
-- Name: dcim_consoleserverporttemplate; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_consoleserverporttemplate (
id integer NOT NULL,
name character varying(50) NOT NULL,
device_type_id integer NOT NULL
);
ALTER TABLE public.dcim_consoleserverporttemplate OWNER TO netbox;
--
-- Name: dcim_consoleserverporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_consoleserverporttemplate_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_consoleserverporttemplate_id_seq OWNER TO netbox;
--
-- Name: dcim_consoleserverporttemplate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_consoleserverporttemplate_id_seq OWNED BY public.dcim_consoleserverporttemplate.id;
--
-- Name: dcim_device; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_device (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(64),
serial character varying(50) NOT NULL,
"position" smallint,
face smallint,
status smallint NOT NULL,
comments text NOT NULL,
device_role_id integer NOT NULL,
device_type_id integer NOT NULL,
platform_id integer,
rack_id integer,
primary_ip4_id integer,
primary_ip6_id integer,
tenant_id integer,
asset_tag character varying(50),
site_id integer NOT NULL,
cluster_id integer,
virtual_chassis_id integer,
vc_position smallint,
vc_priority smallint,
CONSTRAINT dcim_device_face_check CHECK ((face >= 0)),
CONSTRAINT dcim_device_position_check CHECK (("position" >= 0)),
CONSTRAINT dcim_device_status_4f698226_check CHECK ((status >= 0)),
CONSTRAINT dcim_device_vc_position_check CHECK ((vc_position >= 0)),
CONSTRAINT dcim_device_vc_priority_check CHECK ((vc_priority >= 0))
);
ALTER TABLE public.dcim_device OWNER TO netbox;
--
-- Name: dcim_device_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_device_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_device_id_seq OWNER TO netbox;
--
-- Name: dcim_device_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_device_id_seq OWNED BY public.dcim_device.id;
--
-- Name: dcim_devicebay; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_devicebay (
id integer NOT NULL,
name character varying(50) NOT NULL,
device_id integer NOT NULL,
installed_device_id integer
);
ALTER TABLE public.dcim_devicebay OWNER TO netbox;
--
-- Name: dcim_devicebay_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_devicebay_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_devicebay_id_seq OWNER TO netbox;
--
-- Name: dcim_devicebay_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_devicebay_id_seq OWNED BY public.dcim_devicebay.id;
--
-- Name: dcim_devicebaytemplate; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_devicebaytemplate (
id integer NOT NULL,
name character varying(50) NOT NULL,
device_type_id integer NOT NULL
);
ALTER TABLE public.dcim_devicebaytemplate OWNER TO netbox;
--
-- Name: dcim_devicebaytemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_devicebaytemplate_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_devicebaytemplate_id_seq OWNER TO netbox;
--
-- Name: dcim_devicebaytemplate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_devicebaytemplate_id_seq OWNED BY public.dcim_devicebaytemplate.id;
--
-- Name: dcim_devicerole; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_devicerole (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
color character varying(6) NOT NULL,
vm_role boolean NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.dcim_devicerole OWNER TO netbox;
--
-- Name: dcim_devicerole_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_devicerole_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_devicerole_id_seq OWNER TO netbox;
--
-- Name: dcim_devicerole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_devicerole_id_seq OWNED BY public.dcim_devicerole.id;
--
-- Name: dcim_devicetype; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_devicetype (
id integer NOT NULL,
model character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
u_height smallint NOT NULL,
is_full_depth boolean NOT NULL,
is_console_server boolean NOT NULL,
is_pdu boolean NOT NULL,
is_network_device boolean NOT NULL,
manufacturer_id integer NOT NULL,
subdevice_role boolean,
part_number character varying(50) NOT NULL,
comments text NOT NULL,
interface_ordering smallint NOT NULL,
created date,
last_updated timestamp with time zone,
CONSTRAINT dcim_devicetype_interface_ordering_check CHECK ((interface_ordering >= 0)),
CONSTRAINT dcim_devicetype_u_height_check CHECK ((u_height >= 0))
);
ALTER TABLE public.dcim_devicetype OWNER TO netbox;
--
-- Name: dcim_devicetype_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_devicetype_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_devicetype_id_seq OWNER TO netbox;
--
-- Name: dcim_devicetype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_devicetype_id_seq OWNED BY public.dcim_devicetype.id;
--
-- Name: dcim_interface; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_interface (
id integer NOT NULL,
name character varying(64) NOT NULL,
form_factor smallint NOT NULL,
mgmt_only boolean NOT NULL,
description character varying(100) NOT NULL,
device_id integer,
mac_address macaddr,
lag_id integer,
enabled boolean NOT NULL,
mtu smallint,
virtual_machine_id integer,
mode smallint,
untagged_vlan_id integer,
CONSTRAINT dcim_interface_form_factor_check CHECK ((form_factor >= 0)),
CONSTRAINT dcim_interface_mode_check CHECK ((mode >= 0)),
CONSTRAINT dcim_interface_mtu_check CHECK ((mtu >= 0))
);
ALTER TABLE public.dcim_interface OWNER TO netbox;
--
-- Name: dcim_interface_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_interface_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_interface_id_seq OWNER TO netbox;
--
-- Name: dcim_interface_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_interface_id_seq OWNED BY public.dcim_interface.id;
--
-- Name: dcim_interface_tagged_vlans; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_interface_tagged_vlans (
id integer NOT NULL,
interface_id integer NOT NULL,
vlan_id integer NOT NULL
);
ALTER TABLE public.dcim_interface_tagged_vlans OWNER TO netbox;
--
-- Name: dcim_interface_tagged_vlans_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_interface_tagged_vlans_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_interface_tagged_vlans_id_seq OWNER TO netbox;
--
-- Name: dcim_interface_tagged_vlans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_interface_tagged_vlans_id_seq OWNED BY public.dcim_interface_tagged_vlans.id;
--
-- Name: dcim_interfaceconnection; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_interfaceconnection (
id integer NOT NULL,
connection_status boolean NOT NULL,
interface_a_id integer NOT NULL,
interface_b_id integer NOT NULL
);
ALTER TABLE public.dcim_interfaceconnection OWNER TO netbox;
--
-- Name: dcim_interfaceconnection_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_interfaceconnection_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_interfaceconnection_id_seq OWNER TO netbox;
--
-- Name: dcim_interfaceconnection_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_interfaceconnection_id_seq OWNED BY public.dcim_interfaceconnection.id;
--
-- Name: dcim_interfacetemplate; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_interfacetemplate (
id integer NOT NULL,
name character varying(64) NOT NULL,
form_factor smallint NOT NULL,
mgmt_only boolean NOT NULL,
device_type_id integer NOT NULL,
CONSTRAINT dcim_interfacetemplate_form_factor_check CHECK ((form_factor >= 0))
);
ALTER TABLE public.dcim_interfacetemplate OWNER TO netbox;
--
-- Name: dcim_interfacetemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_interfacetemplate_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_interfacetemplate_id_seq OWNER TO netbox;
--
-- Name: dcim_interfacetemplate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_interfacetemplate_id_seq OWNED BY public.dcim_interfacetemplate.id;
--
-- Name: dcim_inventoryitem; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_inventoryitem (
id integer NOT NULL,
name character varying(50) NOT NULL,
part_id character varying(50) NOT NULL,
serial character varying(50) NOT NULL,
discovered boolean NOT NULL,
device_id integer NOT NULL,
parent_id integer,
manufacturer_id integer,
asset_tag character varying(50),
description character varying(100) NOT NULL
);
ALTER TABLE public.dcim_inventoryitem OWNER TO netbox;
--
-- Name: dcim_manufacturer; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_manufacturer (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.dcim_manufacturer OWNER TO netbox;
--
-- Name: dcim_manufacturer_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_manufacturer_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_manufacturer_id_seq OWNER TO netbox;
--
-- Name: dcim_manufacturer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_manufacturer_id_seq OWNED BY public.dcim_manufacturer.id;
--
-- Name: dcim_module_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_module_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_module_id_seq OWNER TO netbox;
--
-- Name: dcim_module_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_module_id_seq OWNED BY public.dcim_inventoryitem.id;
--
-- Name: dcim_platform; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_platform (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
rpc_client character varying(30) NOT NULL,
napalm_driver character varying(50) NOT NULL,
manufacturer_id integer,
created date,
last_updated timestamp with time zone,
napalm_args jsonb
);
ALTER TABLE public.dcim_platform OWNER TO netbox;
--
-- Name: dcim_platform_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_platform_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_platform_id_seq OWNER TO netbox;
--
-- Name: dcim_platform_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_platform_id_seq OWNED BY public.dcim_platform.id;
--
-- Name: dcim_poweroutlet; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_poweroutlet (
id integer NOT NULL,
name character varying(50) NOT NULL,
device_id integer NOT NULL
);
ALTER TABLE public.dcim_poweroutlet OWNER TO netbox;
--
-- Name: dcim_poweroutlet_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_poweroutlet_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_poweroutlet_id_seq OWNER TO netbox;
--
-- Name: dcim_poweroutlet_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_poweroutlet_id_seq OWNED BY public.dcim_poweroutlet.id;
--
-- Name: dcim_poweroutlettemplate; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_poweroutlettemplate (
id integer NOT NULL,
name character varying(50) NOT NULL,
device_type_id integer NOT NULL
);
ALTER TABLE public.dcim_poweroutlettemplate OWNER TO netbox;
--
-- Name: dcim_poweroutlettemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_poweroutlettemplate_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_poweroutlettemplate_id_seq OWNER TO netbox;
--
-- Name: dcim_poweroutlettemplate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_poweroutlettemplate_id_seq OWNED BY public.dcim_poweroutlettemplate.id;
--
-- Name: dcim_powerport; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_powerport (
id integer NOT NULL,
name character varying(50) NOT NULL,
connection_status boolean,
device_id integer NOT NULL,
power_outlet_id integer
);
ALTER TABLE public.dcim_powerport OWNER TO netbox;
--
-- Name: dcim_powerport_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_powerport_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_powerport_id_seq OWNER TO netbox;
--
-- Name: dcim_powerport_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_powerport_id_seq OWNED BY public.dcim_powerport.id;
--
-- Name: dcim_powerporttemplate; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_powerporttemplate (
id integer NOT NULL,
name character varying(50) NOT NULL,
device_type_id integer NOT NULL
);
ALTER TABLE public.dcim_powerporttemplate OWNER TO netbox;
--
-- Name: dcim_powerporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_powerporttemplate_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_powerporttemplate_id_seq OWNER TO netbox;
--
-- Name: dcim_powerporttemplate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_powerporttemplate_id_seq OWNED BY public.dcim_powerporttemplate.id;
--
-- Name: dcim_rack; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_rack (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(50) NOT NULL,
facility_id character varying(50),
u_height smallint NOT NULL,
comments text NOT NULL,
group_id integer,
site_id integer NOT NULL,
tenant_id integer,
type smallint,
width smallint NOT NULL,
role_id integer,
desc_units boolean NOT NULL,
serial character varying(50) NOT NULL,
CONSTRAINT dcim_rack_type_check CHECK ((type >= 0)),
CONSTRAINT dcim_rack_u_height_check CHECK ((u_height >= 0)),
CONSTRAINT dcim_rack_width_check CHECK ((width >= 0))
);
ALTER TABLE public.dcim_rack OWNER TO netbox;
--
-- Name: dcim_rack_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_rack_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_rack_id_seq OWNER TO netbox;
--
-- Name: dcim_rack_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_rack_id_seq OWNED BY public.dcim_rack.id;
--
-- Name: dcim_rackgroup; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_rackgroup (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
site_id integer NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.dcim_rackgroup OWNER TO netbox;
--
-- Name: dcim_rackgroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_rackgroup_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_rackgroup_id_seq OWNER TO netbox;
--
-- Name: dcim_rackgroup_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_rackgroup_id_seq OWNED BY public.dcim_rackgroup.id;
--
-- Name: dcim_rackreservation; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_rackreservation (
id integer NOT NULL,
units smallint[] NOT NULL,
created date,
description character varying(100) NOT NULL,
rack_id integer NOT NULL,
user_id integer NOT NULL,
tenant_id integer,
last_updated timestamp with time zone
);
ALTER TABLE public.dcim_rackreservation OWNER TO netbox;
--
-- Name: dcim_rackreservation_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_rackreservation_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_rackreservation_id_seq OWNER TO netbox;
--
-- Name: dcim_rackreservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_rackreservation_id_seq OWNED BY public.dcim_rackreservation.id;
--
-- Name: dcim_rackrole; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_rackrole (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
color character varying(6) NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.dcim_rackrole OWNER TO netbox;
--
-- Name: dcim_rackrole_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_rackrole_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_rackrole_id_seq OWNER TO netbox;
--
-- Name: dcim_rackrole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_rackrole_id_seq OWNED BY public.dcim_rackrole.id;
--
-- Name: dcim_region; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_region (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
lft integer NOT NULL,
rght integer NOT NULL,
tree_id integer NOT NULL,
level integer NOT NULL,
parent_id integer,
created date,
last_updated timestamp with time zone,
CONSTRAINT dcim_region_level_check CHECK ((level >= 0)),
CONSTRAINT dcim_region_lft_check CHECK ((lft >= 0)),
CONSTRAINT dcim_region_rght_check CHECK ((rght >= 0)),
CONSTRAINT dcim_region_tree_id_check CHECK ((tree_id >= 0))
);
ALTER TABLE public.dcim_region OWNER TO netbox;
--
-- Name: dcim_region_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_region_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_region_id_seq OWNER TO netbox;
--
-- Name: dcim_region_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_region_id_seq OWNED BY public.dcim_region.id;
--
-- Name: dcim_site; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_site (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
facility character varying(50) NOT NULL,
asn bigint,
physical_address character varying(200) NOT NULL,
shipping_address character varying(200) NOT NULL,
comments text NOT NULL,
tenant_id integer,
contact_email character varying(254) NOT NULL,
contact_name character varying(50) NOT NULL,
contact_phone character varying(20) NOT NULL,
region_id integer,
description character varying(100) NOT NULL,
status smallint NOT NULL,
time_zone character varying(63) NOT NULL,
latitude numeric(8,6),
longitude numeric(9,6),
CONSTRAINT dcim_site_status_check CHECK ((status >= 0))
);
ALTER TABLE public.dcim_site OWNER TO netbox;
--
-- Name: dcim_site_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_site_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_site_id_seq OWNER TO netbox;
--
-- Name: dcim_site_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_site_id_seq OWNED BY public.dcim_site.id;
--
-- Name: dcim_virtualchassis; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.dcim_virtualchassis (
id integer NOT NULL,
domain character varying(30) NOT NULL,
master_id integer NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.dcim_virtualchassis OWNER TO netbox;
--
-- Name: dcim_virtualchassis_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.dcim_virtualchassis_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dcim_virtualchassis_id_seq OWNER TO netbox;
--
-- Name: dcim_virtualchassis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.dcim_virtualchassis_id_seq OWNED BY public.dcim_virtualchassis.id;
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.django_admin_log (
id integer NOT NULL,
action_time timestamp with time zone NOT NULL,
object_id text,
object_repr character varying(200) NOT NULL,
action_flag smallint NOT NULL,
change_message text NOT NULL,
content_type_id integer,
user_id integer NOT NULL,
CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0))
);
ALTER TABLE public.django_admin_log OWNER TO netbox;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.django_admin_log_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.django_admin_log_id_seq OWNER TO netbox;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.django_admin_log_id_seq OWNED BY public.django_admin_log.id;
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.django_content_type (
id integer NOT NULL,
app_label character varying(100) NOT NULL,
model character varying(100) NOT NULL
);
ALTER TABLE public.django_content_type OWNER TO netbox;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.django_content_type_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.django_content_type_id_seq OWNER TO netbox;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.django_content_type_id_seq OWNED BY public.django_content_type.id;
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.django_migrations (
id integer NOT NULL,
app character varying(255) NOT NULL,
name character varying(255) NOT NULL,
applied timestamp with time zone NOT NULL
);
ALTER TABLE public.django_migrations OWNER TO netbox;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.django_migrations_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.django_migrations_id_seq OWNER TO netbox;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.django_migrations_id_seq OWNED BY public.django_migrations.id;
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.django_session (
session_key character varying(40) NOT NULL,
session_data text NOT NULL,
expire_date timestamp with time zone NOT NULL
);
ALTER TABLE public.django_session OWNER TO netbox;
--
-- Name: extras_configcontext; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_configcontext (
id integer NOT NULL,
name character varying(100) NOT NULL,
weight smallint NOT NULL,
description character varying(100) NOT NULL,
is_active boolean NOT NULL,
data jsonb NOT NULL,
CONSTRAINT extras_configcontext_weight_check CHECK ((weight >= 0))
);
ALTER TABLE public.extras_configcontext OWNER TO netbox;
--
-- Name: extras_configcontext_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_configcontext_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_configcontext_id_seq OWNER TO netbox;
--
-- Name: extras_configcontext_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_configcontext_id_seq OWNED BY public.extras_configcontext.id;
--
-- Name: extras_configcontext_platforms; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_configcontext_platforms (
id integer NOT NULL,
configcontext_id integer NOT NULL,
platform_id integer NOT NULL
);
ALTER TABLE public.extras_configcontext_platforms OWNER TO netbox;
--
-- Name: extras_configcontext_platforms_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_configcontext_platforms_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_configcontext_platforms_id_seq OWNER TO netbox;
--
-- Name: extras_configcontext_platforms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_configcontext_platforms_id_seq OWNED BY public.extras_configcontext_platforms.id;
--
-- Name: extras_configcontext_regions; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_configcontext_regions (
id integer NOT NULL,
configcontext_id integer NOT NULL,
region_id integer NOT NULL
);
ALTER TABLE public.extras_configcontext_regions OWNER TO netbox;
--
-- Name: extras_configcontext_regions_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_configcontext_regions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_configcontext_regions_id_seq OWNER TO netbox;
--
-- Name: extras_configcontext_regions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_configcontext_regions_id_seq OWNED BY public.extras_configcontext_regions.id;
--
-- Name: extras_configcontext_roles; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_configcontext_roles (
id integer NOT NULL,
configcontext_id integer NOT NULL,
devicerole_id integer NOT NULL
);
ALTER TABLE public.extras_configcontext_roles OWNER TO netbox;
--
-- Name: extras_configcontext_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_configcontext_roles_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_configcontext_roles_id_seq OWNER TO netbox;
--
-- Name: extras_configcontext_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_configcontext_roles_id_seq OWNED BY public.extras_configcontext_roles.id;
--
-- Name: extras_configcontext_sites; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_configcontext_sites (
id integer NOT NULL,
configcontext_id integer NOT NULL,
site_id integer NOT NULL
);
ALTER TABLE public.extras_configcontext_sites OWNER TO netbox;
--
-- Name: extras_configcontext_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_configcontext_sites_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_configcontext_sites_id_seq OWNER TO netbox;
--
-- Name: extras_configcontext_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_configcontext_sites_id_seq OWNED BY public.extras_configcontext_sites.id;
--
-- Name: extras_configcontext_tenant_groups; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_configcontext_tenant_groups (
id integer NOT NULL,
configcontext_id integer NOT NULL,
tenantgroup_id integer NOT NULL
);
ALTER TABLE public.extras_configcontext_tenant_groups OWNER TO netbox;
--
-- Name: extras_configcontext_tenant_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_configcontext_tenant_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_configcontext_tenant_groups_id_seq OWNER TO netbox;
--
-- Name: extras_configcontext_tenant_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_configcontext_tenant_groups_id_seq OWNED BY public.extras_configcontext_tenant_groups.id;
--
-- Name: extras_configcontext_tenants; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_configcontext_tenants (
id integer NOT NULL,
configcontext_id integer NOT NULL,
tenant_id integer NOT NULL
);
ALTER TABLE public.extras_configcontext_tenants OWNER TO netbox;
--
-- Name: extras_configcontext_tenants_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_configcontext_tenants_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_configcontext_tenants_id_seq OWNER TO netbox;
--
-- Name: extras_configcontext_tenants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_configcontext_tenants_id_seq OWNED BY public.extras_configcontext_tenants.id;
--
-- Name: extras_customfield; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_customfield (
id integer NOT NULL,
type smallint NOT NULL,
name character varying(50) NOT NULL,
label character varying(50) NOT NULL,
description character varying(100) NOT NULL,
required boolean NOT NULL,
"default" character varying(100) NOT NULL,
weight smallint NOT NULL,
filter_logic smallint NOT NULL,
CONSTRAINT extras_customfield_filter_logic_check CHECK ((filter_logic >= 0)),
CONSTRAINT extras_customfield_type_check CHECK ((type >= 0)),
CONSTRAINT extras_customfield_weight_check CHECK ((weight >= 0))
);
ALTER TABLE public.extras_customfield OWNER TO netbox;
--
-- Name: extras_customfield_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_customfield_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_customfield_id_seq OWNER TO netbox;
--
-- Name: extras_customfield_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_customfield_id_seq OWNED BY public.extras_customfield.id;
--
-- Name: extras_customfield_obj_type; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_customfield_obj_type (
id integer NOT NULL,
customfield_id integer NOT NULL,
contenttype_id integer NOT NULL
);
ALTER TABLE public.extras_customfield_obj_type OWNER TO netbox;
--
-- Name: extras_customfield_obj_type_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_customfield_obj_type_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_customfield_obj_type_id_seq OWNER TO netbox;
--
-- Name: extras_customfield_obj_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_customfield_obj_type_id_seq OWNED BY public.extras_customfield_obj_type.id;
--
-- Name: extras_customfieldchoice; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_customfieldchoice (
id integer NOT NULL,
value character varying(100) NOT NULL,
weight smallint NOT NULL,
field_id integer NOT NULL,
CONSTRAINT extras_customfieldchoice_weight_check CHECK ((weight >= 0))
);
ALTER TABLE public.extras_customfieldchoice OWNER TO netbox;
--
-- Name: extras_customfieldchoice_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_customfieldchoice_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_customfieldchoice_id_seq OWNER TO netbox;
--
-- Name: extras_customfieldchoice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_customfieldchoice_id_seq OWNED BY public.extras_customfieldchoice.id;
--
-- Name: extras_customfieldvalue; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_customfieldvalue (
id integer NOT NULL,
obj_id integer NOT NULL,
serialized_value character varying(255) NOT NULL,
field_id integer NOT NULL,
obj_type_id integer NOT NULL,
CONSTRAINT extras_customfieldvalue_obj_id_check CHECK ((obj_id >= 0))
);
ALTER TABLE public.extras_customfieldvalue OWNER TO netbox;
--
-- Name: extras_customfieldvalue_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_customfieldvalue_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_customfieldvalue_id_seq OWNER TO netbox;
--
-- Name: extras_customfieldvalue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_customfieldvalue_id_seq OWNED BY public.extras_customfieldvalue.id;
--
-- Name: extras_exporttemplate; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_exporttemplate (
id integer NOT NULL,
name character varying(100) NOT NULL,
template_code text NOT NULL,
mime_type character varying(15) NOT NULL,
file_extension character varying(15) NOT NULL,
content_type_id integer NOT NULL,
description character varying(200) NOT NULL
);
ALTER TABLE public.extras_exporttemplate OWNER TO netbox;
--
-- Name: extras_exporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_exporttemplate_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_exporttemplate_id_seq OWNER TO netbox;
--
-- Name: extras_exporttemplate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_exporttemplate_id_seq OWNED BY public.extras_exporttemplate.id;
--
-- Name: extras_graph; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_graph (
id integer NOT NULL,
type smallint NOT NULL,
weight smallint NOT NULL,
name character varying(100) NOT NULL,
source character varying(500) NOT NULL,
link character varying(200) NOT NULL,
CONSTRAINT extras_graph_type_check CHECK ((type >= 0)),
CONSTRAINT extras_graph_weight_check CHECK ((weight >= 0))
);
ALTER TABLE public.extras_graph OWNER TO netbox;
--
-- Name: extras_graph_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_graph_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_graph_id_seq OWNER TO netbox;
--
-- Name: extras_graph_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_graph_id_seq OWNED BY public.extras_graph.id;
--
-- Name: extras_imageattachment; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_imageattachment (
id integer NOT NULL,
object_id integer NOT NULL,
image character varying(100) NOT NULL,
image_height smallint NOT NULL,
image_width smallint NOT NULL,
name character varying(50) NOT NULL,
created timestamp with time zone NOT NULL,
content_type_id integer NOT NULL,
CONSTRAINT extras_imageattachment_image_height_check CHECK ((image_height >= 0)),
CONSTRAINT extras_imageattachment_image_width_check CHECK ((image_width >= 0)),
CONSTRAINT extras_imageattachment_object_id_check CHECK ((object_id >= 0))
);
ALTER TABLE public.extras_imageattachment OWNER TO netbox;
--
-- Name: extras_imageattachment_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_imageattachment_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_imageattachment_id_seq OWNER TO netbox;
--
-- Name: extras_imageattachment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_imageattachment_id_seq OWNED BY public.extras_imageattachment.id;
--
-- Name: extras_objectchange; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_objectchange (
id integer NOT NULL,
"time" timestamp with time zone NOT NULL,
user_name character varying(150) NOT NULL,
request_id uuid NOT NULL,
action smallint NOT NULL,
changed_object_id integer NOT NULL,
related_object_id integer,
object_repr character varying(200) NOT NULL,
object_data jsonb NOT NULL,
changed_object_type_id integer NOT NULL,
related_object_type_id integer,
user_id integer,
CONSTRAINT extras_objectchange_action_check CHECK ((action >= 0)),
CONSTRAINT extras_objectchange_changed_object_id_check CHECK ((changed_object_id >= 0)),
CONSTRAINT extras_objectchange_related_object_id_check CHECK ((related_object_id >= 0))
);
ALTER TABLE public.extras_objectchange OWNER TO netbox;
--
-- Name: extras_objectchange_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_objectchange_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_objectchange_id_seq OWNER TO netbox;
--
-- Name: extras_objectchange_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_objectchange_id_seq OWNED BY public.extras_objectchange.id;
--
-- Name: extras_reportresult; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_reportresult (
id integer NOT NULL,
report character varying(255) NOT NULL,
created timestamp with time zone NOT NULL,
failed boolean NOT NULL,
data jsonb NOT NULL,
user_id integer
);
ALTER TABLE public.extras_reportresult OWNER TO netbox;
--
-- Name: extras_reportresult_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_reportresult_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_reportresult_id_seq OWNER TO netbox;
--
-- Name: extras_reportresult_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_reportresult_id_seq OWNED BY public.extras_reportresult.id;
--
-- Name: extras_topologymap; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_topologymap (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
device_patterns text NOT NULL,
description character varying(100) NOT NULL,
site_id integer,
type smallint NOT NULL,
CONSTRAINT extras_topologymap_type_check CHECK ((type >= 0))
);
ALTER TABLE public.extras_topologymap OWNER TO netbox;
--
-- Name: extras_topologymap_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_topologymap_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_topologymap_id_seq OWNER TO netbox;
--
-- Name: extras_topologymap_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_topologymap_id_seq OWNED BY public.extras_topologymap.id;
--
-- Name: extras_useraction; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_useraction (
id integer NOT NULL,
"time" timestamp with time zone NOT NULL,
object_id integer,
action smallint NOT NULL,
message text NOT NULL,
content_type_id integer NOT NULL,
user_id integer NOT NULL,
CONSTRAINT extras_useraction_action_check CHECK ((action >= 0)),
CONSTRAINT extras_useraction_object_id_check CHECK ((object_id >= 0))
);
ALTER TABLE public.extras_useraction OWNER TO netbox;
--
-- Name: extras_useraction_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_useraction_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_useraction_id_seq OWNER TO netbox;
--
-- Name: extras_useraction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_useraction_id_seq OWNED BY public.extras_useraction.id;
--
-- Name: extras_webhook; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_webhook (
id integer NOT NULL,
name character varying(150) NOT NULL,
type_create boolean NOT NULL,
type_update boolean NOT NULL,
type_delete boolean NOT NULL,
payload_url character varying(500) NOT NULL,
http_content_type smallint NOT NULL,
secret character varying(255) NOT NULL,
enabled boolean NOT NULL,
ssl_verification boolean NOT NULL,
CONSTRAINT extras_webhook_http_content_type_check CHECK ((http_content_type >= 0))
);
ALTER TABLE public.extras_webhook OWNER TO netbox;
--
-- Name: extras_webhook_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_webhook_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_webhook_id_seq OWNER TO netbox;
--
-- Name: extras_webhook_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_webhook_id_seq OWNED BY public.extras_webhook.id;
--
-- Name: extras_webhook_obj_type; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.extras_webhook_obj_type (
id integer NOT NULL,
webhook_id integer NOT NULL,
contenttype_id integer NOT NULL
);
ALTER TABLE public.extras_webhook_obj_type OWNER TO netbox;
--
-- Name: extras_webhook_obj_type_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.extras_webhook_obj_type_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.extras_webhook_obj_type_id_seq OWNER TO netbox;
--
-- Name: extras_webhook_obj_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.extras_webhook_obj_type_id_seq OWNED BY public.extras_webhook_obj_type.id;
--
-- Name: ipam_aggregate; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_aggregate (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
family smallint NOT NULL,
prefix cidr NOT NULL,
date_added date,
description character varying(100) NOT NULL,
rir_id integer NOT NULL,
CONSTRAINT ipam_aggregate_family_check CHECK ((family >= 0))
);
ALTER TABLE public.ipam_aggregate OWNER TO netbox;
--
-- Name: ipam_aggregate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_aggregate_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_aggregate_id_seq OWNER TO netbox;
--
-- Name: ipam_aggregate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_aggregate_id_seq OWNED BY public.ipam_aggregate.id;
--
-- Name: ipam_ipaddress; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_ipaddress (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
family smallint NOT NULL,
address inet NOT NULL,
description character varying(100) NOT NULL,
interface_id integer,
nat_inside_id integer,
vrf_id integer,
tenant_id integer,
status smallint NOT NULL,
role smallint,
CONSTRAINT ipam_ipaddress_family_check CHECK ((family >= 0)),
CONSTRAINT ipam_ipaddress_role_check CHECK ((role >= 0)),
CONSTRAINT ipam_ipaddress_status_check CHECK ((status >= 0))
);
ALTER TABLE public.ipam_ipaddress OWNER TO netbox;
--
-- Name: ipam_ipaddress_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_ipaddress_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_ipaddress_id_seq OWNER TO netbox;
--
-- Name: ipam_ipaddress_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_ipaddress_id_seq OWNED BY public.ipam_ipaddress.id;
--
-- Name: ipam_prefix; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_prefix (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
family smallint NOT NULL,
prefix cidr NOT NULL,
status smallint NOT NULL,
description character varying(100) NOT NULL,
role_id integer,
site_id integer,
vlan_id integer,
vrf_id integer,
tenant_id integer,
is_pool boolean NOT NULL,
CONSTRAINT ipam_prefix_family_check CHECK ((family >= 0)),
CONSTRAINT ipam_prefix_status_check CHECK ((status >= 0))
);
ALTER TABLE public.ipam_prefix OWNER TO netbox;
--
-- Name: ipam_prefix_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_prefix_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_prefix_id_seq OWNER TO netbox;
--
-- Name: ipam_prefix_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_prefix_id_seq OWNED BY public.ipam_prefix.id;
--
-- Name: ipam_rir; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_rir (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
is_private boolean NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.ipam_rir OWNER TO netbox;
--
-- Name: ipam_rir_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_rir_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_rir_id_seq OWNER TO netbox;
--
-- Name: ipam_rir_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_rir_id_seq OWNED BY public.ipam_rir.id;
--
-- Name: ipam_role; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_role (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
weight smallint NOT NULL,
created date,
last_updated timestamp with time zone,
CONSTRAINT ipam_role_weight_check CHECK ((weight >= 0))
);
ALTER TABLE public.ipam_role OWNER TO netbox;
--
-- Name: ipam_role_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_role_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_role_id_seq OWNER TO netbox;
--
-- Name: ipam_role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_role_id_seq OWNED BY public.ipam_role.id;
--
-- Name: ipam_service; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_service (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(30) NOT NULL,
protocol smallint NOT NULL,
port integer NOT NULL,
description character varying(100) NOT NULL,
device_id integer,
virtual_machine_id integer,
CONSTRAINT ipam_service_port_check CHECK ((port >= 0)),
CONSTRAINT ipam_service_protocol_check CHECK ((protocol >= 0))
);
ALTER TABLE public.ipam_service OWNER TO netbox;
--
-- Name: ipam_service_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_service_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_service_id_seq OWNER TO netbox;
--
-- Name: ipam_service_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_service_id_seq OWNED BY public.ipam_service.id;
--
-- Name: ipam_service_ipaddresses; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_service_ipaddresses (
id integer NOT NULL,
service_id integer NOT NULL,
ipaddress_id integer NOT NULL
);
ALTER TABLE public.ipam_service_ipaddresses OWNER TO netbox;
--
-- Name: ipam_service_ipaddresses_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_service_ipaddresses_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_service_ipaddresses_id_seq OWNER TO netbox;
--
-- Name: ipam_service_ipaddresses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_service_ipaddresses_id_seq OWNED BY public.ipam_service_ipaddresses.id;
--
-- Name: ipam_vlan; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_vlan (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
vid smallint NOT NULL,
name character varying(64) NOT NULL,
status smallint NOT NULL,
role_id integer,
site_id integer,
group_id integer,
description character varying(100) NOT NULL,
tenant_id integer,
CONSTRAINT ipam_vlan_status_check CHECK ((status >= 0)),
CONSTRAINT ipam_vlan_vid_check CHECK ((vid >= 0))
);
ALTER TABLE public.ipam_vlan OWNER TO netbox;
--
-- Name: ipam_vlan_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_vlan_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_vlan_id_seq OWNER TO netbox;
--
-- Name: ipam_vlan_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_vlan_id_seq OWNED BY public.ipam_vlan.id;
--
-- Name: ipam_vlangroup; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_vlangroup (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
site_id integer,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.ipam_vlangroup OWNER TO netbox;
--
-- Name: ipam_vlangroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_vlangroup_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_vlangroup_id_seq OWNER TO netbox;
--
-- Name: ipam_vlangroup_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_vlangroup_id_seq OWNED BY public.ipam_vlangroup.id;
--
-- Name: ipam_vrf; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.ipam_vrf (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(50) NOT NULL,
rd character varying(21) NOT NULL,
description character varying(100) NOT NULL,
enforce_unique boolean NOT NULL,
tenant_id integer
);
ALTER TABLE public.ipam_vrf OWNER TO netbox;
--
-- Name: ipam_vrf_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.ipam_vrf_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ipam_vrf_id_seq OWNER TO netbox;
--
-- Name: ipam_vrf_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.ipam_vrf_id_seq OWNED BY public.ipam_vrf.id;
--
-- Name: secrets_secret; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.secrets_secret (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(100) NOT NULL,
ciphertext bytea NOT NULL,
hash character varying(128) NOT NULL,
device_id integer NOT NULL,
role_id integer NOT NULL
);
ALTER TABLE public.secrets_secret OWNER TO netbox;
--
-- Name: secrets_secret_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.secrets_secret_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.secrets_secret_id_seq OWNER TO netbox;
--
-- Name: secrets_secret_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.secrets_secret_id_seq OWNED BY public.secrets_secret.id;
--
-- Name: secrets_secretrole; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.secrets_secretrole (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.secrets_secretrole OWNER TO netbox;
--
-- Name: secrets_secretrole_groups; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.secrets_secretrole_groups (
id integer NOT NULL,
secretrole_id integer NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.secrets_secretrole_groups OWNER TO netbox;
--
-- Name: secrets_secretrole_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.secrets_secretrole_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.secrets_secretrole_groups_id_seq OWNER TO netbox;
--
-- Name: secrets_secretrole_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.secrets_secretrole_groups_id_seq OWNED BY public.secrets_secretrole_groups.id;
--
-- Name: secrets_secretrole_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.secrets_secretrole_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.secrets_secretrole_id_seq OWNER TO netbox;
--
-- Name: secrets_secretrole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.secrets_secretrole_id_seq OWNED BY public.secrets_secretrole.id;
--
-- Name: secrets_secretrole_users; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.secrets_secretrole_users (
id integer NOT NULL,
secretrole_id integer NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.secrets_secretrole_users OWNER TO netbox;
--
-- Name: secrets_secretrole_users_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.secrets_secretrole_users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.secrets_secretrole_users_id_seq OWNER TO netbox;
--
-- Name: secrets_secretrole_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.secrets_secretrole_users_id_seq OWNED BY public.secrets_secretrole_users.id;
--
-- Name: secrets_sessionkey; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.secrets_sessionkey (
id integer NOT NULL,
cipher bytea NOT NULL,
hash character varying(128) NOT NULL,
created timestamp with time zone NOT NULL,
userkey_id integer NOT NULL
);
ALTER TABLE public.secrets_sessionkey OWNER TO netbox;
--
-- Name: secrets_sessionkey_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.secrets_sessionkey_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.secrets_sessionkey_id_seq OWNER TO netbox;
--
-- Name: secrets_sessionkey_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.secrets_sessionkey_id_seq OWNED BY public.secrets_sessionkey.id;
--
-- Name: secrets_userkey; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.secrets_userkey (
id integer NOT NULL,
created date NOT NULL,
last_updated timestamp with time zone NOT NULL,
public_key text NOT NULL,
master_key_cipher bytea,
user_id integer NOT NULL
);
ALTER TABLE public.secrets_userkey OWNER TO netbox;
--
-- Name: secrets_userkey_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.secrets_userkey_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.secrets_userkey_id_seq OWNER TO netbox;
--
-- Name: secrets_userkey_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.secrets_userkey_id_seq OWNED BY public.secrets_userkey.id;
--
-- Name: taggit_tag; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.taggit_tag (
id integer NOT NULL,
name character varying(100) NOT NULL,
slug character varying(100) NOT NULL
);
ALTER TABLE public.taggit_tag OWNER TO netbox;
--
-- Name: taggit_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.taggit_tag_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.taggit_tag_id_seq OWNER TO netbox;
--
-- Name: taggit_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.taggit_tag_id_seq OWNED BY public.taggit_tag.id;
--
-- Name: taggit_taggeditem; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.taggit_taggeditem (
id integer NOT NULL,
object_id integer NOT NULL,
content_type_id integer NOT NULL,
tag_id integer NOT NULL
);
ALTER TABLE public.taggit_taggeditem OWNER TO netbox;
--
-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.taggit_taggeditem_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.taggit_taggeditem_id_seq OWNER TO netbox;
--
-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.taggit_taggeditem_id_seq OWNED BY public.taggit_taggeditem.id;
--
-- Name: tenancy_tenant; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.tenancy_tenant (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(30) NOT NULL,
slug character varying(50) NOT NULL,
description character varying(100) NOT NULL,
comments text NOT NULL,
group_id integer
);
ALTER TABLE public.tenancy_tenant OWNER TO netbox;
--
-- Name: tenancy_tenant_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.tenancy_tenant_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.tenancy_tenant_id_seq OWNER TO netbox;
--
-- Name: tenancy_tenant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.tenancy_tenant_id_seq OWNED BY public.tenancy_tenant.id;
--
-- Name: tenancy_tenantgroup; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.tenancy_tenantgroup (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.tenancy_tenantgroup OWNER TO netbox;
--
-- Name: tenancy_tenantgroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.tenancy_tenantgroup_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.tenancy_tenantgroup_id_seq OWNER TO netbox;
--
-- Name: tenancy_tenantgroup_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.tenancy_tenantgroup_id_seq OWNED BY public.tenancy_tenantgroup.id;
--
-- Name: users_token; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.users_token (
id integer NOT NULL,
created timestamp with time zone NOT NULL,
expires timestamp with time zone,
key character varying(40) NOT NULL,
write_enabled boolean NOT NULL,
description character varying(100) NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.users_token OWNER TO netbox;
--
-- Name: users_token_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.users_token_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_token_id_seq OWNER TO netbox;
--
-- Name: users_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.users_token_id_seq OWNED BY public.users_token.id;
--
-- Name: virtualization_cluster; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.virtualization_cluster (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(100) NOT NULL,
comments text NOT NULL,
group_id integer,
type_id integer NOT NULL,
site_id integer
);
ALTER TABLE public.virtualization_cluster OWNER TO netbox;
--
-- Name: virtualization_cluster_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.virtualization_cluster_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.virtualization_cluster_id_seq OWNER TO netbox;
--
-- Name: virtualization_cluster_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.virtualization_cluster_id_seq OWNED BY public.virtualization_cluster.id;
--
-- Name: virtualization_clustergroup; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.virtualization_clustergroup (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.virtualization_clustergroup OWNER TO netbox;
--
-- Name: virtualization_clustergroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.virtualization_clustergroup_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.virtualization_clustergroup_id_seq OWNER TO netbox;
--
-- Name: virtualization_clustergroup_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.virtualization_clustergroup_id_seq OWNED BY public.virtualization_clustergroup.id;
--
-- Name: virtualization_clustertype; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.virtualization_clustertype (
id integer NOT NULL,
name character varying(50) NOT NULL,
slug character varying(50) NOT NULL,
created date,
last_updated timestamp with time zone
);
ALTER TABLE public.virtualization_clustertype OWNER TO netbox;
--
-- Name: virtualization_clustertype_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.virtualization_clustertype_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.virtualization_clustertype_id_seq OWNER TO netbox;
--
-- Name: virtualization_clustertype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.virtualization_clustertype_id_seq OWNED BY public.virtualization_clustertype.id;
--
-- Name: virtualization_virtualmachine; Type: TABLE; Schema: public; Owner: netbox
--
CREATE TABLE public.virtualization_virtualmachine (
id integer NOT NULL,
created date,
last_updated timestamp with time zone,
name character varying(64) NOT NULL,
vcpus smallint,
memory integer,
disk integer,
comments text NOT NULL,
cluster_id integer NOT NULL,
platform_id integer,
primary_ip4_id integer,
primary_ip6_id integer,
tenant_id integer,
status smallint NOT NULL,
role_id integer,
CONSTRAINT virtualization_virtualmachine_disk_check CHECK ((disk >= 0)),
CONSTRAINT virtualization_virtualmachine_memory_check CHECK ((memory >= 0)),
CONSTRAINT virtualization_virtualmachine_status_check CHECK ((status >= 0)),
CONSTRAINT virtualization_virtualmachine_vcpus_check CHECK ((vcpus >= 0))
);
ALTER TABLE public.virtualization_virtualmachine OWNER TO netbox;
--
-- Name: virtualization_virtualmachine_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox
--
CREATE SEQUENCE public.virtualization_virtualmachine_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.virtualization_virtualmachine_id_seq OWNER TO netbox;
--
-- Name: virtualization_virtualmachine_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: netbox
--
ALTER SEQUENCE public.virtualization_virtualmachine_id_seq OWNED BY public.virtualization_virtualmachine.id;
--
-- Name: auth_group id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_group ALTER COLUMN id SET DEFAULT nextval('public.auth_group_id_seq'::regclass);
--
-- Name: auth_group_permissions id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_group_permissions ALTER COLUMN id SET DEFAULT nextval('public.auth_group_permissions_id_seq'::regclass);
--
-- Name: auth_permission id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_permission ALTER COLUMN id SET DEFAULT nextval('public.auth_permission_id_seq'::regclass);
--
-- Name: auth_user id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user ALTER COLUMN id SET DEFAULT nextval('public.auth_user_id_seq'::regclass);
--
-- Name: auth_user_groups id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_groups ALTER COLUMN id SET DEFAULT nextval('public.auth_user_groups_id_seq'::regclass);
--
-- Name: auth_user_user_permissions id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_user_permissions ALTER COLUMN id SET DEFAULT nextval('public.auth_user_user_permissions_id_seq'::regclass);
--
-- Name: circuits_circuit id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuit ALTER COLUMN id SET DEFAULT nextval('public.circuits_circuit_id_seq'::regclass);
--
-- Name: circuits_circuittermination id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittermination ALTER COLUMN id SET DEFAULT nextval('public.circuits_circuittermination_id_seq'::regclass);
--
-- Name: circuits_circuittype id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittype ALTER COLUMN id SET DEFAULT nextval('public.circuits_circuittype_id_seq'::regclass);
--
-- Name: circuits_provider id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_provider ALTER COLUMN id SET DEFAULT nextval('public.circuits_provider_id_seq'::regclass);
--
-- Name: dcim_consoleport id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleport ALTER COLUMN id SET DEFAULT nextval('public.dcim_consoleport_id_seq'::regclass);
--
-- Name: dcim_consoleporttemplate id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleporttemplate ALTER COLUMN id SET DEFAULT nextval('public.dcim_consoleporttemplate_id_seq'::regclass);
--
-- Name: dcim_consoleserverport id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleserverport ALTER COLUMN id SET DEFAULT nextval('public.dcim_consoleserverport_id_seq'::regclass);
--
-- Name: dcim_consoleserverporttemplate id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleserverporttemplate ALTER COLUMN id SET DEFAULT nextval('public.dcim_consoleserverporttemplate_id_seq'::regclass);
--
-- Name: dcim_device id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device ALTER COLUMN id SET DEFAULT nextval('public.dcim_device_id_seq'::regclass);
--
-- Name: dcim_devicebay id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebay ALTER COLUMN id SET DEFAULT nextval('public.dcim_devicebay_id_seq'::regclass);
--
-- Name: dcim_devicebaytemplate id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebaytemplate ALTER COLUMN id SET DEFAULT nextval('public.dcim_devicebaytemplate_id_seq'::regclass);
--
-- Name: dcim_devicerole id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicerole ALTER COLUMN id SET DEFAULT nextval('public.dcim_devicerole_id_seq'::regclass);
--
-- Name: dcim_devicetype id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicetype ALTER COLUMN id SET DEFAULT nextval('public.dcim_devicetype_id_seq'::regclass);
--
-- Name: dcim_interface id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface ALTER COLUMN id SET DEFAULT nextval('public.dcim_interface_id_seq'::regclass);
--
-- Name: dcim_interface_tagged_vlans id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface_tagged_vlans ALTER COLUMN id SET DEFAULT nextval('public.dcim_interface_tagged_vlans_id_seq'::regclass);
--
-- Name: dcim_interfaceconnection id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfaceconnection ALTER COLUMN id SET DEFAULT nextval('public.dcim_interfaceconnection_id_seq'::regclass);
--
-- Name: dcim_interfacetemplate id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfacetemplate ALTER COLUMN id SET DEFAULT nextval('public.dcim_interfacetemplate_id_seq'::regclass);
--
-- Name: dcim_inventoryitem id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_inventoryitem ALTER COLUMN id SET DEFAULT nextval('public.dcim_module_id_seq'::regclass);
--
-- Name: dcim_manufacturer id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_manufacturer ALTER COLUMN id SET DEFAULT nextval('public.dcim_manufacturer_id_seq'::regclass);
--
-- Name: dcim_platform id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_platform ALTER COLUMN id SET DEFAULT nextval('public.dcim_platform_id_seq'::regclass);
--
-- Name: dcim_poweroutlet id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_poweroutlet ALTER COLUMN id SET DEFAULT nextval('public.dcim_poweroutlet_id_seq'::regclass);
--
-- Name: dcim_poweroutlettemplate id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_poweroutlettemplate ALTER COLUMN id SET DEFAULT nextval('public.dcim_poweroutlettemplate_id_seq'::regclass);
--
-- Name: dcim_powerport id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerport ALTER COLUMN id SET DEFAULT nextval('public.dcim_powerport_id_seq'::regclass);
--
-- Name: dcim_powerporttemplate id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerporttemplate ALTER COLUMN id SET DEFAULT nextval('public.dcim_powerporttemplate_id_seq'::regclass);
--
-- Name: dcim_rack id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rack ALTER COLUMN id SET DEFAULT nextval('public.dcim_rack_id_seq'::regclass);
--
-- Name: dcim_rackgroup id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackgroup ALTER COLUMN id SET DEFAULT nextval('public.dcim_rackgroup_id_seq'::regclass);
--
-- Name: dcim_rackreservation id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackreservation ALTER COLUMN id SET DEFAULT nextval('public.dcim_rackreservation_id_seq'::regclass);
--
-- Name: dcim_rackrole id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackrole ALTER COLUMN id SET DEFAULT nextval('public.dcim_rackrole_id_seq'::regclass);
--
-- Name: dcim_region id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_region ALTER COLUMN id SET DEFAULT nextval('public.dcim_region_id_seq'::regclass);
--
-- Name: dcim_site id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_site ALTER COLUMN id SET DEFAULT nextval('public.dcim_site_id_seq'::regclass);
--
-- Name: dcim_virtualchassis id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_virtualchassis ALTER COLUMN id SET DEFAULT nextval('public.dcim_virtualchassis_id_seq'::regclass);
--
-- Name: django_admin_log id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_admin_log ALTER COLUMN id SET DEFAULT nextval('public.django_admin_log_id_seq'::regclass);
--
-- Name: django_content_type id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_content_type ALTER COLUMN id SET DEFAULT nextval('public.django_content_type_id_seq'::regclass);
--
-- Name: django_migrations id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_migrations ALTER COLUMN id SET DEFAULT nextval('public.django_migrations_id_seq'::regclass);
--
-- Name: extras_configcontext id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_id_seq'::regclass);
--
-- Name: extras_configcontext_platforms id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_platforms ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_platforms_id_seq'::regclass);
--
-- Name: extras_configcontext_regions id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_regions ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_regions_id_seq'::regclass);
--
-- Name: extras_configcontext_roles id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_roles ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_roles_id_seq'::regclass);
--
-- Name: extras_configcontext_sites id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_sites ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_sites_id_seq'::regclass);
--
-- Name: extras_configcontext_tenant_groups id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenant_groups ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_tenant_groups_id_seq'::regclass);
--
-- Name: extras_configcontext_tenants id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenants ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_tenants_id_seq'::regclass);
--
-- Name: extras_customfield id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfield ALTER COLUMN id SET DEFAULT nextval('public.extras_customfield_id_seq'::regclass);
--
-- Name: extras_customfield_obj_type id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfield_obj_type ALTER COLUMN id SET DEFAULT nextval('public.extras_customfield_obj_type_id_seq'::regclass);
--
-- Name: extras_customfieldchoice id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfieldchoice ALTER COLUMN id SET DEFAULT nextval('public.extras_customfieldchoice_id_seq'::regclass);
--
-- Name: extras_customfieldvalue id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfieldvalue ALTER COLUMN id SET DEFAULT nextval('public.extras_customfieldvalue_id_seq'::regclass);
--
-- Name: extras_exporttemplate id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_exporttemplate ALTER COLUMN id SET DEFAULT nextval('public.extras_exporttemplate_id_seq'::regclass);
--
-- Name: extras_graph id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_graph ALTER COLUMN id SET DEFAULT nextval('public.extras_graph_id_seq'::regclass);
--
-- Name: extras_imageattachment id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_imageattachment ALTER COLUMN id SET DEFAULT nextval('public.extras_imageattachment_id_seq'::regclass);
--
-- Name: extras_objectchange id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_objectchange ALTER COLUMN id SET DEFAULT nextval('public.extras_objectchange_id_seq'::regclass);
--
-- Name: extras_reportresult id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_reportresult ALTER COLUMN id SET DEFAULT nextval('public.extras_reportresult_id_seq'::regclass);
--
-- Name: extras_topologymap id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_topologymap ALTER COLUMN id SET DEFAULT nextval('public.extras_topologymap_id_seq'::regclass);
--
-- Name: extras_useraction id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_useraction ALTER COLUMN id SET DEFAULT nextval('public.extras_useraction_id_seq'::regclass);
--
-- Name: extras_webhook id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_webhook ALTER COLUMN id SET DEFAULT nextval('public.extras_webhook_id_seq'::regclass);
--
-- Name: extras_webhook_obj_type id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_webhook_obj_type ALTER COLUMN id SET DEFAULT nextval('public.extras_webhook_obj_type_id_seq'::regclass);
--
-- Name: ipam_aggregate id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_aggregate ALTER COLUMN id SET DEFAULT nextval('public.ipam_aggregate_id_seq'::regclass);
--
-- Name: ipam_ipaddress id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_ipaddress ALTER COLUMN id SET DEFAULT nextval('public.ipam_ipaddress_id_seq'::regclass);
--
-- Name: ipam_prefix id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_prefix ALTER COLUMN id SET DEFAULT nextval('public.ipam_prefix_id_seq'::regclass);
--
-- Name: ipam_rir id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_rir ALTER COLUMN id SET DEFAULT nextval('public.ipam_rir_id_seq'::regclass);
--
-- Name: ipam_role id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_role ALTER COLUMN id SET DEFAULT nextval('public.ipam_role_id_seq'::regclass);
--
-- Name: ipam_service id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_service ALTER COLUMN id SET DEFAULT nextval('public.ipam_service_id_seq'::regclass);
--
-- Name: ipam_service_ipaddresses id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_service_ipaddresses ALTER COLUMN id SET DEFAULT nextval('public.ipam_service_ipaddresses_id_seq'::regclass);
--
-- Name: ipam_vlan id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlan ALTER COLUMN id SET DEFAULT nextval('public.ipam_vlan_id_seq'::regclass);
--
-- Name: ipam_vlangroup id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlangroup ALTER COLUMN id SET DEFAULT nextval('public.ipam_vlangroup_id_seq'::regclass);
--
-- Name: ipam_vrf id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vrf ALTER COLUMN id SET DEFAULT nextval('public.ipam_vrf_id_seq'::regclass);
--
-- Name: secrets_secret id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secret ALTER COLUMN id SET DEFAULT nextval('public.secrets_secret_id_seq'::regclass);
--
-- Name: secrets_secretrole id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole ALTER COLUMN id SET DEFAULT nextval('public.secrets_secretrole_id_seq'::regclass);
--
-- Name: secrets_secretrole_groups id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_groups ALTER COLUMN id SET DEFAULT nextval('public.secrets_secretrole_groups_id_seq'::regclass);
--
-- Name: secrets_secretrole_users id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_users ALTER COLUMN id SET DEFAULT nextval('public.secrets_secretrole_users_id_seq'::regclass);
--
-- Name: secrets_sessionkey id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_sessionkey ALTER COLUMN id SET DEFAULT nextval('public.secrets_sessionkey_id_seq'::regclass);
--
-- Name: secrets_userkey id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_userkey ALTER COLUMN id SET DEFAULT nextval('public.secrets_userkey_id_seq'::regclass);
--
-- Name: taggit_tag id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.taggit_tag ALTER COLUMN id SET DEFAULT nextval('public.taggit_tag_id_seq'::regclass);
--
-- Name: taggit_taggeditem id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.taggit_taggeditem ALTER COLUMN id SET DEFAULT nextval('public.taggit_taggeditem_id_seq'::regclass);
--
-- Name: tenancy_tenant id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.tenancy_tenant ALTER COLUMN id SET DEFAULT nextval('public.tenancy_tenant_id_seq'::regclass);
--
-- Name: tenancy_tenantgroup id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.tenancy_tenantgroup ALTER COLUMN id SET DEFAULT nextval('public.tenancy_tenantgroup_id_seq'::regclass);
--
-- Name: users_token id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.users_token ALTER COLUMN id SET DEFAULT nextval('public.users_token_id_seq'::regclass);
--
-- Name: virtualization_cluster id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_cluster ALTER COLUMN id SET DEFAULT nextval('public.virtualization_cluster_id_seq'::regclass);
--
-- Name: virtualization_clustergroup id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_clustergroup ALTER COLUMN id SET DEFAULT nextval('public.virtualization_clustergroup_id_seq'::regclass);
--
-- Name: virtualization_clustertype id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_clustertype ALTER COLUMN id SET DEFAULT nextval('public.virtualization_clustertype_id_seq'::regclass);
--
-- Name: virtualization_virtualmachine id; Type: DEFAULT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine ALTER COLUMN id SET DEFAULT nextval('public.virtualization_virtualmachine_id_seq'::regclass);
--
-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.auth_group (id, name) FROM stdin;
\.
--
-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin;
\.
--
-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin;
1 Can add log entry 1 add_logentry
2 Can change log entry 1 change_logentry
3 Can delete log entry 1 delete_logentry
4 Can add permission 2 add_permission
5 Can change permission 2 change_permission
6 Can delete permission 2 delete_permission
7 Can add group 3 add_group
8 Can change group 3 change_group
9 Can delete group 3 delete_group
10 Can add user 4 add_user
11 Can change user 4 change_user
12 Can delete user 4 delete_user
13 Can add content type 5 add_contenttype
14 Can change content type 5 change_contenttype
15 Can delete content type 5 delete_contenttype
16 Can add session 6 add_session
17 Can change session 6 change_session
18 Can delete session 6 delete_session
19 Can add Tag 7 add_tag
20 Can change Tag 7 change_tag
21 Can delete Tag 7 delete_tag
22 Can add Tagged Item 8 add_taggeditem
23 Can change Tagged Item 8 change_taggeditem
24 Can delete Tagged Item 8 delete_taggeditem
25 Can add provider 9 add_provider
26 Can change provider 9 change_provider
27 Can delete provider 9 delete_provider
28 Can add circuit type 10 add_circuittype
29 Can change circuit type 10 change_circuittype
30 Can delete circuit type 10 delete_circuittype
31 Can add circuit 11 add_circuit
32 Can change circuit 11 change_circuit
33 Can delete circuit 11 delete_circuit
34 Can add circuit termination 12 add_circuittermination
35 Can change circuit termination 12 change_circuittermination
36 Can delete circuit termination 12 delete_circuittermination
37 Can add console port 13 add_consoleport
38 Can change console port 13 change_consoleport
39 Can delete console port 13 delete_consoleport
40 Can add console port template 14 add_consoleporttemplate
41 Can change console port template 14 change_consoleporttemplate
42 Can delete console port template 14 delete_consoleporttemplate
43 Can add console server port 15 add_consoleserverport
44 Can change console server port 15 change_consoleserverport
45 Can delete console server port 15 delete_consoleserverport
46 Can add console server port template 16 add_consoleserverporttemplate
47 Can change console server port template 16 change_consoleserverporttemplate
48 Can delete console server port template 16 delete_consoleserverporttemplate
49 Can add device 17 add_device
50 Can change device 17 change_device
51 Can delete device 17 delete_device
52 Read-only access to devices via NAPALM 17 napalm_read
53 Read/write access to devices via NAPALM 17 napalm_write
54 Can add device role 18 add_devicerole
55 Can change device role 18 change_devicerole
56 Can delete device role 18 delete_devicerole
57 Can add device type 19 add_devicetype
58 Can change device type 19 change_devicetype
59 Can delete device type 19 delete_devicetype
60 Can add interface 20 add_interface
61 Can change interface 20 change_interface
62 Can delete interface 20 delete_interface
63 Can add interface connection 21 add_interfaceconnection
64 Can change interface connection 21 change_interfaceconnection
65 Can delete interface connection 21 delete_interfaceconnection
66 Can add interface template 22 add_interfacetemplate
67 Can change interface template 22 change_interfacetemplate
68 Can delete interface template 22 delete_interfacetemplate
69 Can add manufacturer 23 add_manufacturer
70 Can change manufacturer 23 change_manufacturer
71 Can delete manufacturer 23 delete_manufacturer
72 Can add platform 24 add_platform
73 Can change platform 24 change_platform
74 Can delete platform 24 delete_platform
75 Can add power outlet 25 add_poweroutlet
76 Can change power outlet 25 change_poweroutlet
77 Can delete power outlet 25 delete_poweroutlet
78 Can add power outlet template 26 add_poweroutlettemplate
79 Can change power outlet template 26 change_poweroutlettemplate
80 Can delete power outlet template 26 delete_poweroutlettemplate
81 Can add power port 27 add_powerport
82 Can change power port 27 change_powerport
83 Can delete power port 27 delete_powerport
84 Can add power port template 28 add_powerporttemplate
85 Can change power port template 28 change_powerporttemplate
86 Can delete power port template 28 delete_powerporttemplate
87 Can add rack 29 add_rack
88 Can change rack 29 change_rack
89 Can delete rack 29 delete_rack
90 Can add rack group 30 add_rackgroup
91 Can change rack group 30 change_rackgroup
92 Can delete rack group 30 delete_rackgroup
93 Can add site 31 add_site
94 Can change site 31 change_site
95 Can delete site 31 delete_site
96 Can add device bay 32 add_devicebay
97 Can change device bay 32 change_devicebay
98 Can delete device bay 32 delete_devicebay
99 Can add device bay template 33 add_devicebaytemplate
100 Can change device bay template 33 change_devicebaytemplate
101 Can delete device bay template 33 delete_devicebaytemplate
102 Can add rack role 34 add_rackrole
103 Can change rack role 34 change_rackrole
104 Can delete rack role 34 delete_rackrole
105 Can add rack reservation 35 add_rackreservation
106 Can change rack reservation 35 change_rackreservation
107 Can delete rack reservation 35 delete_rackreservation
108 Can add region 36 add_region
109 Can change region 36 change_region
110 Can delete region 36 delete_region
111 Can add inventory item 37 add_inventoryitem
112 Can change inventory item 37 change_inventoryitem
113 Can delete inventory item 37 delete_inventoryitem
114 Can add virtual chassis 38 add_virtualchassis
115 Can change virtual chassis 38 change_virtualchassis
116 Can delete virtual chassis 38 delete_virtualchassis
117 Can add aggregate 39 add_aggregate
118 Can change aggregate 39 change_aggregate
119 Can delete aggregate 39 delete_aggregate
120 Can add IP address 40 add_ipaddress
121 Can change IP address 40 change_ipaddress
122 Can delete IP address 40 delete_ipaddress
123 Can add prefix 41 add_prefix
124 Can change prefix 41 change_prefix
125 Can delete prefix 41 delete_prefix
126 Can add RIR 42 add_rir
127 Can change RIR 42 change_rir
128 Can delete RIR 42 delete_rir
129 Can add role 43 add_role
130 Can change role 43 change_role
131 Can delete role 43 delete_role
132 Can add VLAN 44 add_vlan
133 Can change VLAN 44 change_vlan
134 Can delete VLAN 44 delete_vlan
135 Can add VRF 45 add_vrf
136 Can change VRF 45 change_vrf
137 Can delete VRF 45 delete_vrf
138 Can add VLAN group 46 add_vlangroup
139 Can change VLAN group 46 change_vlangroup
140 Can delete VLAN group 46 delete_vlangroup
141 Can add service 47 add_service
142 Can change service 47 change_service
143 Can delete service 47 delete_service
144 Can add export template 48 add_exporttemplate
145 Can change export template 48 change_exporttemplate
146 Can delete export template 48 delete_exporttemplate
147 Can add graph 49 add_graph
148 Can change graph 49 change_graph
149 Can delete graph 49 delete_graph
150 Can add topology map 50 add_topologymap
151 Can change topology map 50 change_topologymap
152 Can delete topology map 50 delete_topologymap
153 Can add user action 51 add_useraction
154 Can change user action 51 change_useraction
155 Can delete user action 51 delete_useraction
156 Can add custom field 52 add_customfield
157 Can change custom field 52 change_customfield
158 Can delete custom field 52 delete_customfield
159 Can add custom field choice 53 add_customfieldchoice
160 Can change custom field choice 53 change_customfieldchoice
161 Can delete custom field choice 53 delete_customfieldchoice
162 Can add custom field value 54 add_customfieldvalue
163 Can change custom field value 54 change_customfieldvalue
164 Can delete custom field value 54 delete_customfieldvalue
165 Can add image attachment 55 add_imageattachment
166 Can change image attachment 55 change_imageattachment
167 Can delete image attachment 55 delete_imageattachment
168 Can add report result 56 add_reportresult
169 Can change report result 56 change_reportresult
170 Can delete report result 56 delete_reportresult
171 Can add webhook 57 add_webhook
172 Can change webhook 57 change_webhook
173 Can delete webhook 57 delete_webhook
174 Can add object change 58 add_objectchange
175 Can change object change 58 change_objectchange
176 Can delete object change 58 delete_objectchange
177 Can add config context 59 add_configcontext
178 Can change config context 59 change_configcontext
179 Can delete config context 59 delete_configcontext
180 Can add secret role 60 add_secretrole
181 Can change secret role 60 change_secretrole
182 Can delete secret role 60 delete_secretrole
183 Can add secret 61 add_secret
184 Can change secret 61 change_secret
185 Can delete secret 61 delete_secret
186 Can add user key 62 add_userkey
187 Can change user key 62 change_userkey
188 Can delete user key 62 delete_userkey
189 Can activate user keys for decryption 62 activate_userkey
190 Can add session key 63 add_sessionkey
191 Can change session key 63 change_sessionkey
192 Can delete session key 63 delete_sessionkey
193 Can add tenant 64 add_tenant
194 Can change tenant 64 change_tenant
195 Can delete tenant 64 delete_tenant
196 Can add tenant group 65 add_tenantgroup
197 Can change tenant group 65 change_tenantgroup
198 Can delete tenant group 65 delete_tenantgroup
199 Can add cluster 67 add_cluster
200 Can change cluster 67 change_cluster
201 Can delete cluster 67 delete_cluster
202 Can add cluster group 68 add_clustergroup
203 Can change cluster group 68 change_clustergroup
204 Can delete cluster group 68 delete_clustergroup
205 Can add cluster type 69 add_clustertype
206 Can change cluster type 69 change_clustertype
207 Can delete cluster type 69 delete_clustertype
208 Can add virtual machine 70 add_virtualmachine
209 Can change virtual machine 70 change_virtualmachine
210 Can delete virtual machine 70 delete_virtualmachine
\.
--
-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin;
1 pbkdf2_sha256$100000$CAcpMYnRcSUr$K9M8nw6mUiIZYzfP4SLMREwl1c86R98KrSCoBjlt3R4= 2018-08-10 00:43:40.007116+00 t admin admin@example.com t t 2018-08-09 22:59:26.648527+00
\.
--
-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.auth_user_groups (id, user_id, group_id) FROM stdin;
\.
--
-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin;
\.
--
-- Data for Name: circuits_circuit; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.circuits_circuit (id, created, last_updated, cid, install_date, commit_rate, comments, provider_id, type_id, tenant_id, description, status) FROM stdin;
1 2018-08-10 2018-08-10 01:35:05.417229+00 134 2018-01-01 100000000 1. First\r\n2. Second\r\n3. Third 1 1 1 Desc of Circuit 0 1
\.
--
-- Data for Name: circuits_circuittermination; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.circuits_circuittermination (id, term_side, port_speed, upstream_speed, xconnect_id, pp_info, circuit_id, interface_id, site_id) FROM stdin;
1 A 10000000 1000000 1234 42_13 1 57 1
\.
--
-- Data for Name: circuits_circuittype; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.circuits_circuittype (id, name, slug, created, last_updated) FROM stdin;
1 Circuit Type 0 circuit-type-0 2018-08-10 2018-08-10 01:32:54.224569+00
\.
--
-- Data for Name: circuits_provider; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.circuits_provider (id, created, last_updated, name, slug, asn, account, portal_url, noc_contact, admin_contact, comments) FROM stdin;
1 2018-08-10 2018-08-10 01:32:41.492791+00 Circuit Provider 0 circuit-provider-0 1234 12345 http://www.provider0.com Call 911 Operator 1 * Comment 1\r\n* Comment 2
\.
--
-- Data for Name: dcim_consoleport; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_consoleport (id, name, connection_status, cs_port_id, device_id) FROM stdin;
1 rj45 t \N 3
2 rs232 t \N 3
3 rj45 t \N 6
4 rj45 t \N 7
5 rj45 t \N 8
6 rs232 t \N 8
\.
--
-- Data for Name: dcim_consoleporttemplate; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_consoleporttemplate (id, name, device_type_id) FROM stdin;
1 rs232 3
3 rj45 3
4 rj45 4
\.
--
-- Data for Name: dcim_consoleserverport; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_consoleserverport (id, name, device_id) FROM stdin;
\.
--
-- Data for Name: dcim_consoleserverporttemplate; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_consoleserverporttemplate (id, name, device_type_id) FROM stdin;
\.
--
-- Data for Name: dcim_device; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_device (id, created, last_updated, name, serial, "position", face, status, comments, device_role_id, device_type_id, platform_id, rack_id, primary_ip4_id, primary_ip6_id, tenant_id, asset_tag, site_id, cluster_id, virtual_chassis_id, vc_position, vc_priority) FROM stdin;
3 2018-08-10 2018-08-10 01:29:14.250028+00 Regular Racked Device 0 0 40 0 1 line 1\r\nline 2\r\nline 3 2 3 1 1 8 \N 1 0 1 \N \N \N \N
4 2018-08-10 2018-08-10 01:30:24.558808+00 Parent Device 0 1 39 0 1 # some markdown\r\n\r\nis now supported here. 2 1 1 1 12 \N 1 1 1 \N \N \N \N
5 2018-08-10 2018-08-10 01:29:58.755878+00 Child Device 0 2 \N \N 1 2 2 1 1 13 \N 1 2 1 1 \N \N \N
6 2018-08-10 2018-08-10 01:30:33.871543+00 Switch Device 0 1 0 1 2 4 1 1 7 \N \N \N 1 \N 1 0 \N
7 2018-08-10 2018-08-10 01:30:44.008329+00 Switch Device 1 2 0 1 2 4 1 1 6 \N \N \N 1 \N 1 1 \N
8 2018-08-10 2018-08-10 21:01:20.399349+00 Regular Unracked Device 0 4 \N \N 1 2 3 1 \N \N \N 1 4 1 \N \N \N \N
\.
--
-- Data for Name: dcim_devicebay; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_devicebay (id, name, device_id, installed_device_id) FROM stdin;
3 device bay 1 4 \N
2 device bay 0 4 5
\.
--
-- Data for Name: dcim_devicebaytemplate; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_devicebaytemplate (id, name, device_type_id) FROM stdin;
1 device bay 0 1
2 device bay 1 1
\.
--
-- Data for Name: dcim_devicerole; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_devicerole (id, name, slug, color, vm_role, created, last_updated) FROM stdin;
1 VM Role 1 vm-role-1 aa1409 t 2018-08-10 2018-08-10 00:57:53.279761+00
2 Device Role 0 device-role-0 aa1409 f 2018-08-10 2018-08-10 00:57:58.53187+00
\.
--
-- Data for Name: dcim_devicetype; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_devicetype (id, model, slug, u_height, is_full_depth, is_console_server, is_pdu, is_network_device, manufacturer_id, subdevice_role, part_number, comments, interface_ordering, created, last_updated) FROM stdin;
3 Device Type 0 device-type-0 3 t f f t 1 \N 100 1 2018-08-10 2018-08-10 00:57:00.047558+00
1 Parent Device Type 0 parent-device-type-0 1 t f f t 1 t 000 1 2018-08-10 2018-08-10 00:57:18.843389+00
2 Child Device Type 0 child-device-type-0 0 t f f t 1 f 010 1 2018-08-10 2018-08-10 00:57:25.38307+00
4 Switch Device Type 0 switch-device-type-0 1 t f f t 1 \N 1 2018-08-10 2018-08-10 01:14:45.707827+00
\.
--
-- Data for Name: dcim_interface; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_interface (id, name, form_factor, mgmt_only, description, device_id, mac_address, lag_id, enabled, mtu, virtual_machine_id, mode, untagged_vlan_id) FROM stdin;
15 dev0_eth0 1150 f 6 \N \N t \N \N \N \N
17 dev0_eth10 1150 f 6 \N \N t \N \N \N \N
21 dev0_eth14 1150 f 6 \N \N t \N \N \N \N
22 dev0_eth15 1150 f 6 \N \N t \N \N \N \N
5 lag 0 200 f 3 \N \N t \N \N \N \N
6 lag 1 200 f 3 \N \N t \N \N \N \N
7 oob 0 1000 t 3 \N \N t \N \N \N \N
1 interfaces 0 1150 f 3 \N 5 t \N \N \N \N
2 interfaces 1 1150 f 3 \N 5 t \N \N \N \N
3 interfaces 2 1150 f 3 \N 6 t \N \N \N \N
4 interfaces 3 1150 f 3 \N 6 t \N \N \N \N
8 interfaces 0 1200 f 4 \N \N t \N \N \N \N
9 interfaces 1 1200 f 4 \N \N t \N \N \N \N
10 interfaces 2 1200 f 4 \N \N t \N \N \N \N
11 interfaces 3 1200 f 4 \N \N t \N \N \N \N
12 oob 0 1000 t 4 \N \N t \N \N \N \N
13 interfaces 0 1000 f 5 \N \N t \N \N \N \N
14 interfaces 1 1000 f 5 \N \N t \N \N \N \N
23 dev0_eth16 1150 f 6 \N \N t \N \N \N \N
24 dev0_eth17 1150 f 6 \N \N t \N \N \N \N
26 dev0_eth19 1150 f 6 \N \N t \N \N \N \N
28 dev0_eth20 1150 f 6 \N \N t \N \N \N \N
30 dev0_eth22 1150 f 6 \N \N t \N \N \N \N
32 dev0_eth24 1200 f 6 \N \N t \N \N \N \N
34 dev0_eth26 1200 f 6 \N \N t \N \N \N \N
36 dev0_eth28 1200 f 6 \N \N t \N \N \N \N
37 dev0_eth29 1200 f 6 \N \N t \N \N \N \N
40 dev0_eth31 1200 f 6 \N \N t \N \N \N \N
43 dev0_eth34 1200 f 6 \N \N t \N \N \N \N
45 dev0_eth36 1200 f 6 \N \N t \N \N \N \N
49 dev0_eth4 1150 f 6 \N \N t \N \N \N \N
54 dev0_eth44 1200 f 6 \N \N t \N \N \N \N
56 dev0_eth46 1200 f 6 \N \N t \N \N \N \N
57 dev0_eth47 1200 f 6 \N \N t \N \N \N \N
61 dev0_eth8 1150 f 6 \N \N t \N \N \N \N
62 dev0_eth9 1150 f 6 \N \N t \N \N \N \N
65 dev1_eth1 1150 f 7 \N \N t \N \N \N \N
67 dev1_eth11 1150 f 7 \N \N t \N \N \N \N
68 dev1_eth12 1150 f 7 \N \N t \N \N \N \N
69 dev1_eth13 1150 f 7 \N \N t \N \N \N \N
74 dev1_eth18 1150 f 7 \N \N t \N \N \N \N
76 dev1_eth2 1150 f 7 \N \N t \N \N \N \N
78 dev1_eth21 1150 f 7 \N \N t \N \N \N \N
80 dev1_eth23 1150 f 7 \N \N t \N \N \N \N
82 dev1_eth25 1200 f 7 \N \N t \N \N \N \N
84 dev1_eth27 1200 f 7 \N \N t \N \N \N \N
87 dev1_eth3 1150 f 7 \N \N t \N \N \N \N
88 dev1_eth30 1200 f 7 \N \N t \N \N \N \N
90 dev1_eth32 1200 f 7 \N \N t \N \N \N \N
91 dev1_eth33 1200 f 7 \N \N t \N \N \N \N
93 dev1_eth35 1200 f 7 \N \N t \N \N \N \N
95 dev1_eth37 1200 f 7 \N \N t \N \N \N \N
96 dev1_eth38 1200 f 7 \N \N t \N \N \N \N
97 dev1_eth39 1200 f 7 \N \N t \N \N \N \N
99 dev1_eth40 1200 f 7 \N \N t \N \N \N \N
100 dev1_eth41 1200 f 7 \N \N t \N \N \N \N
101 dev1_eth42 1200 f 7 \N \N t \N \N \N \N
102 dev1_eth43 1200 f 7 \N \N t \N \N \N \N
104 dev1_eth45 1200 f 7 \N \N t \N \N \N \N
107 dev1_eth5 1150 f 7 \N \N t \N \N \N \N
108 dev1_eth6 1150 f 7 \N \N t \N \N \N \N
109 dev1_eth7 1150 f 7 \N \N t \N \N \N \N
63 oob 1000 t 6 \N \N t \N \N \N \N
112 oob 1000 t 7 00:11:22:33:44:55 \N t \N \N \N \N
113 veth0 0 f \N 00:11:22:33:44:55 \N t \N 1 \N \N
114 veth1 0 f \N 00:11:22:33:44:56 \N t \N 1 \N \N
115 interfaces 0 1150 f 8 \N \N t \N \N \N \N
116 interfaces 1 1150 f 8 \N \N t \N \N \N \N
117 interfaces 2 1150 f 8 \N \N t \N \N \N \N
118 interfaces 3 1150 f 8 \N \N t \N \N \N \N
119 lag 0 200 f 8 \N \N t \N \N \N \N
120 lag 1 200 f 8 \N \N t \N \N \N \N
121 oob 0 1000 t 8 \N \N t \N \N \N \N
\.
--
-- Data for Name: dcim_interface_tagged_vlans; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_interface_tagged_vlans (id, interface_id, vlan_id) FROM stdin;
\.
--
-- Data for Name: dcim_interfaceconnection; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_interfaceconnection (id, connection_status, interface_a_id, interface_b_id) FROM stdin;
9 t 1 15
11 t 2 65
12 f 4 76
14 f 3 17
15 t 7 30
\.
--
-- Data for Name: dcim_interfacetemplate; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_interfacetemplate (id, name, form_factor, mgmt_only, device_type_id) FROM stdin;
1 interfaces 0 1200 f 1
2 interfaces 1 1200 f 1
3 interfaces 2 1200 f 1
4 interfaces 3 1200 f 1
5 oob 0 1000 t 1
6 interfaces 0 1150 f 3
7 interfaces 1 1150 f 3
8 interfaces 2 1150 f 3
9 interfaces 3 1150 f 3
10 oob 0 1000 t 3
11 lag 0 200 f 3
12 lag 1 200 f 3
13 interfaces 0 1000 f 2
14 interfaces 1 1000 f 2
15 eth0 1150 f 4
16 eth1 1150 f 4
17 eth2 1150 f 4
18 eth3 1150 f 4
19 eth4 1150 f 4
20 eth5 1150 f 4
21 eth6 1150 f 4
22 eth7 1150 f 4
23 eth8 1150 f 4
24 eth9 1150 f 4
25 eth10 1150 f 4
26 eth11 1150 f 4
27 eth12 1150 f 4
28 eth13 1150 f 4
29 eth14 1150 f 4
30 eth15 1150 f 4
31 eth16 1150 f 4
32 eth17 1150 f 4
33 eth18 1150 f 4
34 eth19 1150 f 4
35 eth20 1150 f 4
36 eth21 1150 f 4
37 eth22 1150 f 4
38 eth23 1150 f 4
39 eth24 1200 f 4
40 eth25 1200 f 4
41 eth26 1200 f 4
42 eth27 1200 f 4
43 eth28 1200 f 4
44 eth29 1200 f 4
45 eth30 1200 f 4
46 eth31 1200 f 4
47 eth32 1200 f 4
48 eth33 1200 f 4
49 eth34 1200 f 4
50 eth35 1200 f 4
51 eth36 1200 f 4
52 eth37 1200 f 4
53 eth38 1200 f 4
54 eth39 1200 f 4
55 eth40 1200 f 4
56 eth41 1200 f 4
57 eth42 1200 f 4
58 eth43 1200 f 4
59 eth44 1200 f 4
60 eth45 1200 f 4
61 eth46 1200 f 4
62 eth47 1200 f 4
63 oob 1000 t 4
\.
--
-- Data for Name: dcim_inventoryitem; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_inventoryitem (id, name, part_id, serial, discovered, device_id, parent_id, manufacturer_id, asset_tag, description) FROM stdin;
\.
--
-- Data for Name: dcim_manufacturer; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_manufacturer (id, name, slug, created, last_updated) FROM stdin;
1 Manufacturer 0 manufacturer-0 2018-08-10 2018-08-10 00:55:22.133776+00
\.
--
-- Data for Name: dcim_platform; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_platform (id, name, slug, rpc_client, napalm_driver, manufacturer_id, created, last_updated, napalm_args) FROM stdin;
1 Platform 0 platform-0 1 2018-08-10 2018-08-10 00:58:14.843626+00 \N
\.
--
-- Data for Name: dcim_poweroutlet; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_poweroutlet (id, name, device_id) FROM stdin;
\.
--
-- Data for Name: dcim_poweroutlettemplate; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_poweroutlettemplate (id, name, device_type_id) FROM stdin;
\.
--
-- Data for Name: dcim_powerport; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_powerport (id, name, connection_status, device_id, power_outlet_id) FROM stdin;
1 power port 0 t 3 \N
2 power port 1 t 3 \N
3 power port 0 t 4 \N
4 power port 1 t 4 \N
5 power port 0 t 6 \N
6 power port 1 t 6 \N
7 power port 0 t 7 \N
8 power port 1 t 7 \N
9 power port 0 t 8 \N
10 power port 1 t 8 \N
\.
--
-- Data for Name: dcim_powerporttemplate; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_powerporttemplate (id, name, device_type_id) FROM stdin;
1 power port 0 1
2 power port 1 1
3 power port 0 3
4 power port 1 3
5 power port 0 4
6 power port 1 4
\.
--
-- Data for Name: dcim_rack; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_rack (id, created, last_updated, name, facility_id, u_height, comments, group_id, site_id, tenant_id, type, width, role_id, desc_units, serial) FROM stdin;
1 2018-08-10 2018-08-10 00:53:22.132873+00 Rack 0 000 42 1 1 1 100 19 1 f 999
\.
--
-- Data for Name: dcim_rackgroup; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_rackgroup (id, name, slug, site_id, created, last_updated) FROM stdin;
1 Rack Group 0 rack-group-0 1 2018-08-10 2018-08-10 00:52:03.17976+00
\.
--
-- Data for Name: dcim_rackreservation; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_rackreservation (id, units, created, description, rack_id, user_id, tenant_id, last_updated) FROM stdin;
1 {1} 2018-08-10 Reservation 0 1 1 1 2018-08-10 00:54:48.305898+00
\.
--
-- Data for Name: dcim_rackrole; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_rackrole (id, name, slug, color, created, last_updated) FROM stdin;
1 Rack Role 0 rack-role-0 aa1409 2018-08-10 2018-08-10 00:51:52.781804+00
\.
--
-- Data for Name: dcim_region; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_region (id, name, slug, lft, rght, tree_id, level, parent_id, created, last_updated) FROM stdin;
2 Parent Region 0 parent-region-0 1 4 1 0 \N 2018-08-10 2018-08-10 00:52:25.777771+00
1 Region 0 region-0 2 3 1 1 2 2018-08-10 2018-08-10 00:52:29.41206+00
\.
--
-- Data for Name: dcim_site; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_site (id, created, last_updated, name, slug, facility, asn, physical_address, shipping_address, comments, tenant_id, contact_email, contact_name, contact_phone, region_id, description, status, time_zone, latitude, longitude) FROM stdin;
1 2018-08-10 2018-08-10 00:52:12.392892+00 Site 0 site-0 facility0 1 physical address\r\nline 2\r\nline 3 shipping address\r\nline 2\r\nline 3 comment line 1\r\ncomment line 2 \N e@mail.com Contace Name +42 (000) 123-4444 1 description0 1 Europe/Amsterdam 88.123456 10.123456
\.
--
-- Data for Name: dcim_virtualchassis; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.dcim_virtualchassis (id, domain, master_id, created, last_updated) FROM stdin;
1 6 2018-08-10 2018-08-10 01:15:21.169835+00
\.
--
-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin;
\.
--
-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.django_content_type (id, app_label, model) FROM stdin;
1 admin logentry
2 auth permission
3 auth group
4 auth user
5 contenttypes contenttype
6 sessions session
7 taggit tag
8 taggit taggeditem
9 circuits provider
10 circuits circuittype
11 circuits circuit
12 circuits circuittermination
13 dcim consoleport
14 dcim consoleporttemplate
15 dcim consoleserverport
16 dcim consoleserverporttemplate
17 dcim device
18 dcim devicerole
19 dcim devicetype
20 dcim interface
21 dcim interfaceconnection
22 dcim interfacetemplate
23 dcim manufacturer
24 dcim platform
25 dcim poweroutlet
26 dcim poweroutlettemplate
27 dcim powerport
28 dcim powerporttemplate
29 dcim rack
30 dcim rackgroup
31 dcim site
32 dcim devicebay
33 dcim devicebaytemplate
34 dcim rackrole
35 dcim rackreservation
36 dcim region
37 dcim inventoryitem
38 dcim virtualchassis
39 ipam aggregate
40 ipam ipaddress
41 ipam prefix
42 ipam rir
43 ipam role
44 ipam vlan
45 ipam vrf
46 ipam vlangroup
47 ipam service
48 extras exporttemplate
49 extras graph
50 extras topologymap
51 extras useraction
52 extras customfield
53 extras customfieldchoice
54 extras customfieldvalue
55 extras imageattachment
56 extras reportresult
57 extras webhook
58 extras objectchange
59 extras configcontext
60 secrets secretrole
61 secrets secret
62 secrets userkey
63 secrets sessionkey
64 tenancy tenant
65 tenancy tenantgroup
66 users token
67 virtualization cluster
68 virtualization clustergroup
69 virtualization clustertype
70 virtualization virtualmachine
\.
--
-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.django_migrations (id, app, name, applied) FROM stdin;
1 contenttypes 0001_initial 2018-08-09 22:59:08.035909+00
2 auth 0001_initial 2018-08-09 22:59:08.133601+00
3 admin 0001_initial 2018-08-09 22:59:08.168337+00
4 admin 0002_logentry_remove_auto_add 2018-08-09 22:59:08.181045+00
5 contenttypes 0002_remove_content_type_name 2018-08-09 22:59:08.214939+00
6 auth 0002_alter_permission_name_max_length 2018-08-09 22:59:08.224658+00
7 auth 0003_alter_user_email_max_length 2018-08-09 22:59:08.2401+00
8 auth 0004_alter_user_username_opts 2018-08-09 22:59:08.253267+00
9 auth 0005_alter_user_last_login_null 2018-08-09 22:59:08.27569+00
10 auth 0006_require_contenttypes_0002 2018-08-09 22:59:08.278621+00
11 auth 0007_alter_validators_add_error_messages 2018-08-09 22:59:08.292149+00
12 auth 0008_alter_user_username_max_length 2018-08-09 22:59:08.312633+00
13 auth 0009_alter_user_last_name_max_length 2018-08-09 22:59:08.328715+00
14 taggit 0001_initial 2018-08-09 22:59:08.377895+00
15 taggit 0002_auto_20150616_2121 2018-08-09 22:59:08.389461+00
16 tenancy 0001_initial 2018-08-09 22:59:08.438478+00
17 dcim 0001_initial 2018-08-09 22:59:08.848084+00
18 ipam 0001_initial 2018-08-09 22:59:09.085081+00
19 dcim 0002_auto_20160622_1821 2018-08-09 22:59:10.210346+00
20 dcim 0003_auto_20160628_1721 2018-08-09 22:59:10.213246+00
21 dcim 0004_auto_20160701_2049 2018-08-09 22:59:10.215991+00
22 dcim 0005_auto_20160706_1722 2018-08-09 22:59:10.219164+00
23 dcim 0006_add_device_primary_ip4_ip6 2018-08-09 22:59:10.221772+00
24 dcim 0007_device_copy_primary_ip 2018-08-09 22:59:10.224815+00
25 dcim 0008_device_remove_primary_ip 2018-08-09 22:59:10.22836+00
26 dcim 0009_site_32bit_asn_support 2018-08-09 22:59:10.231013+00
27 dcim 0010_devicebay_installed_device_set_null 2018-08-09 22:59:10.233979+00
28 dcim 0011_devicetype_part_number 2018-08-09 22:59:10.237157+00
29 dcim 0012_site_rack_device_add_tenant 2018-08-09 22:59:10.240369+00
30 dcim 0013_add_interface_form_factors 2018-08-09 22:59:10.243592+00
31 dcim 0014_rack_add_type_width 2018-08-09 22:59:10.246081+00
32 dcim 0015_rack_add_u_height_validator 2018-08-09 22:59:10.248815+00
33 dcim 0016_module_add_manufacturer 2018-08-09 22:59:10.251598+00
34 dcim 0017_rack_add_role 2018-08-09 22:59:10.255103+00
35 dcim 0018_device_add_asset_tag 2018-08-09 22:59:10.257767+00
36 dcim 0019_new_iface_form_factors 2018-08-09 22:59:10.260776+00
37 dcim 0020_rack_desc_units 2018-08-09 22:59:10.263981+00
38 dcim 0021_add_ff_flexstack 2018-08-09 22:59:10.266854+00
39 dcim 0022_color_names_to_rgb 2018-08-09 22:59:10.270579+00
40 circuits 0001_initial 2018-08-09 22:59:10.455457+00
41 circuits 0002_auto_20160622_1821 2018-08-09 22:59:10.45858+00
42 circuits 0003_provider_32bit_asn_support 2018-08-09 22:59:10.461743+00
43 circuits 0004_circuit_add_tenant 2018-08-09 22:59:10.464302+00
44 circuits 0005_circuit_add_upstream_speed 2018-08-09 22:59:10.467035+00
45 circuits 0006_terminations 2018-08-09 22:59:10.471052+00
46 circuits 0007_circuit_add_description 2018-08-09 22:59:10.473909+00
47 circuits 0008_circuittermination_interface_protect_on_delete 2018-08-09 22:59:10.476692+00
48 circuits 0009_unicode_literals 2018-08-09 22:59:10.47942+00
49 circuits 0010_circuit_status 2018-08-09 22:59:10.481835+00
50 circuits 0011_tags 2018-08-09 22:59:10.553073+00
51 circuits 0012_change_logging 2018-08-09 22:59:10.647569+00
52 tenancy 0002_tenant_group_optional 2018-08-09 22:59:10.816325+00
53 tenancy 0003_unicode_literals 2018-08-09 22:59:10.81976+00
54 ipam 0002_vrf_add_enforce_unique 2018-08-09 22:59:12.462744+00
55 ipam 0003_ipam_add_vlangroups 2018-08-09 22:59:12.465471+00
56 ipam 0004_ipam_vlangroup_uniqueness 2018-08-09 22:59:12.468796+00
57 ipam 0005_auto_20160725_1842 2018-08-09 22:59:12.471567+00
58 ipam 0006_vrf_vlan_add_tenant 2018-08-09 22:59:12.474294+00
59 ipam 0007_prefix_ipaddress_add_tenant 2018-08-09 22:59:12.47671+00
60 ipam 0008_prefix_change_order 2018-08-09 22:59:12.47918+00
61 ipam 0009_ipaddress_add_status 2018-08-09 22:59:12.481792+00
62 ipam 0010_ipaddress_help_texts 2018-08-09 22:59:12.484324+00
63 ipam 0011_rir_add_is_private 2018-08-09 22:59:12.487183+00
64 ipam 0012_services 2018-08-09 22:59:12.489573+00
65 ipam 0013_prefix_add_is_pool 2018-08-09 22:59:12.491742+00
66 ipam 0014_ipaddress_status_add_deprecated 2018-08-09 22:59:12.493848+00
67 ipam 0015_global_vlans 2018-08-09 22:59:12.496423+00
68 ipam 0016_unicode_literals 2018-08-09 22:59:12.499259+00
69 ipam 0017_ipaddress_roles 2018-08-09 22:59:12.502746+00
70 ipam 0018_remove_service_uniqueness_constraint 2018-08-09 22:59:12.505405+00
71 dcim 0023_devicetype_comments 2018-08-09 22:59:14.891266+00
72 dcim 0024_site_add_contact_fields 2018-08-09 22:59:14.893823+00
73 dcim 0025_devicetype_add_interface_ordering 2018-08-09 22:59:14.895655+00
74 dcim 0026_add_rack_reservations 2018-08-09 22:59:14.903918+00
75 dcim 0027_device_add_site 2018-08-09 22:59:14.905708+00
76 dcim 0028_device_copy_rack_to_site 2018-08-09 22:59:14.908709+00
77 dcim 0029_allow_rackless_devices 2018-08-09 22:59:14.911118+00
78 dcim 0030_interface_add_lag 2018-08-09 22:59:14.913405+00
79 dcim 0031_regions 2018-08-09 22:59:14.915251+00
80 dcim 0032_device_increase_name_length 2018-08-09 22:59:14.917602+00
81 dcim 0033_rackreservation_rack_editable 2018-08-09 22:59:14.920212+00
82 dcim 0034_rename_module_to_inventoryitem 2018-08-09 22:59:14.922175+00
83 dcim 0035_device_expand_status_choices 2018-08-09 22:59:14.924628+00
84 dcim 0036_add_ff_juniper_vcp 2018-08-09 22:59:14.927231+00
85 dcim 0037_unicode_literals 2018-08-09 22:59:14.929543+00
86 dcim 0038_wireless_interfaces 2018-08-09 22:59:14.93177+00
87 dcim 0039_interface_add_enabled_mtu 2018-08-09 22:59:14.934974+00
88 dcim 0040_inventoryitem_add_asset_tag_description 2018-08-09 22:59:14.937414+00
89 dcim 0041_napalm_integration 2018-08-09 22:59:14.939275+00
90 dcim 0042_interface_ff_10ge_cx4 2018-08-09 22:59:14.941873+00
91 dcim 0043_device_component_name_lengths 2018-08-09 22:59:14.944295+00
92 virtualization 0001_virtualization 2018-08-09 22:59:15.114637+00
93 ipam 0019_virtualization 2018-08-09 22:59:15.22727+00
94 ipam 0020_ipaddress_add_role_carp 2018-08-09 22:59:15.230384+00
95 dcim 0044_virtualization 2018-08-09 22:59:16.63102+00
96 dcim 0045_devicerole_vm_role 2018-08-09 22:59:16.635469+00
97 dcim 0046_rack_lengthen_facility_id 2018-08-09 22:59:16.638764+00
98 dcim 0047_more_100ge_form_factors 2018-08-09 22:59:16.641631+00
99 dcim 0048_rack_serial 2018-08-09 22:59:16.645463+00
100 dcim 0049_rackreservation_change_user 2018-08-09 22:59:16.648603+00
101 dcim 0050_interface_vlan_tagging 2018-08-09 22:59:16.651317+00
102 dcim 0051_rackreservation_tenant 2018-08-09 22:59:16.654189+00
103 dcim 0052_virtual_chassis 2018-08-09 22:59:16.6573+00
104 dcim 0053_platform_manufacturer 2018-08-09 22:59:16.660386+00
105 dcim 0054_site_status_timezone_description 2018-08-09 22:59:16.663328+00
106 dcim 0055_virtualchassis_ordering 2018-08-09 22:59:16.667142+00
107 dcim 0056_django2 2018-08-09 22:59:16.801458+00
108 dcim 0057_tags 2018-08-09 22:59:17.703157+00
109 dcim 0058_relax_rack_naming_constraints 2018-08-09 22:59:17.829296+00
110 dcim 0059_site_latitude_longitude 2018-08-09 22:59:17.970258+00
111 dcim 0060_change_logging 2018-08-09 22:59:18.833071+00
112 dcim 0061_platform_napalm_args 2018-08-09 22:59:18.855121+00
113 tenancy 0004_tags 2018-08-09 22:59:18.907865+00
114 tenancy 0005_change_logging 2018-08-09 22:59:18.993521+00
115 extras 0001_initial 2018-08-09 22:59:19.678402+00
116 extras 0002_custom_fields 2018-08-09 22:59:19.681749+00
117 extras 0003_exporttemplate_add_description 2018-08-09 22:59:19.685591+00
118 extras 0004_topologymap_change_comma_to_semicolon 2018-08-09 22:59:19.68927+00
119 extras 0005_useraction_add_bulk_create 2018-08-09 22:59:19.692232+00
120 extras 0006_add_imageattachments 2018-08-09 22:59:19.695359+00
121 extras 0007_unicode_literals 2018-08-09 22:59:19.700641+00
122 extras 0008_reports 2018-08-09 22:59:19.704007+00
123 extras 0009_topologymap_type 2018-08-09 22:59:19.706931+00
124 extras 0010_customfield_filter_logic 2018-08-09 22:59:19.710054+00
125 extras 0011_django2 2018-08-09 22:59:20.083975+00
126 extras 0012_webhooks 2018-08-09 22:59:20.202612+00
127 extras 0013_objectchange 2018-08-09 22:59:20.293159+00
128 extras 0014_configcontexts 2018-08-09 22:59:20.747542+00
129 ipam 0021_vrf_ordering 2018-08-09 22:59:20.777063+00
130 ipam 0022_tags 2018-08-09 22:59:21.446611+00
131 ipam 0023_change_logging 2018-08-09 22:59:22.234433+00
132 secrets 0001_initial 2018-08-09 22:59:22.74251+00
133 secrets 0002_userkey_add_session_key 2018-08-09 22:59:22.746169+00
134 secrets 0003_unicode_literals 2018-08-09 22:59:22.751608+00
135 secrets 0004_tags 2018-08-09 22:59:22.861988+00
136 secrets 0005_change_logging 2018-08-09 22:59:23.073005+00
137 sessions 0001_initial 2018-08-09 22:59:23.09947+00
138 users 0001_api_tokens 2018-08-09 22:59:23.194262+00
139 users 0002_unicode_literals 2018-08-09 22:59:23.1979+00
140 virtualization 0002_virtualmachine_add_status 2018-08-09 22:59:23.603015+00
141 virtualization 0003_cluster_add_site 2018-08-09 22:59:23.606326+00
142 virtualization 0004_virtualmachine_add_role 2018-08-09 22:59:23.609715+00
143 virtualization 0005_django2 2018-08-09 22:59:23.681307+00
144 virtualization 0006_tags 2018-08-09 22:59:23.829508+00
145 virtualization 0007_change_logging 2018-08-09 22:59:24.150834+00
146 circuits 0001_initial_squashed_0010_circuit_status 2018-08-09 22:59:24.162487+00
147 dcim 0002_auto_20160622_1821_squashed_0022_color_names_to_rgb 2018-08-09 22:59:24.165816+00
148 dcim 0023_devicetype_comments_squashed_0043_device_component_name_lengths 2018-08-09 22:59:24.172803+00
149 dcim 0044_virtualization_squashed_0055_virtualchassis_ordering 2018-08-09 22:59:24.177146+00
150 ipam 0002_vrf_add_enforce_unique_squashed_0018_remove_service_uniqueness_constraint 2018-08-09 22:59:24.180313+00
151 ipam 0019_virtualization_squashed_0020_ipaddress_add_role_carp 2018-08-09 22:59:24.183391+00
152 extras 0001_initial_squashed_0010_customfield_filter_logic 2018-08-09 22:59:24.186869+00
153 secrets 0001_initial_squashed_0003_unicode_literals 2018-08-09 22:59:24.190177+00
154 tenancy 0002_tenant_group_optional_squashed_0003_unicode_literals 2018-08-09 22:59:24.193255+00
155 users 0001_api_tokens_squashed_0002_unicode_literals 2018-08-09 22:59:24.196397+00
156 virtualization 0002_virtualmachine_add_status_squashed_0004_virtualmachine_add_role 2018-08-09 22:59:24.200201+00
\.
--
-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.django_session (session_key, session_data, expire_date) FROM stdin;
41fr1tv23jwljws78qw7mcy3za2v57aq YWU1Mzc4NzExOTAzYmM2M2U1ZTIyNjVlOTJlOGU0YjhmZTcyMWI5ZTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxODNiNjZlNGQ1MTFmNTU4ZWU5ZTUzZDA5OTM2NDA4MmUyMDVkNGYzIn0= 2018-08-24 00:43:40.011972+00
\.
--
-- Data for Name: extras_configcontext; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_configcontext (id, name, weight, description, is_active, data) FROM stdin;
1 Config Context 0 1000 t {"created_for": "having dummy data in netbox-client-ruby"}
\.
--
-- Data for Name: extras_configcontext_platforms; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_configcontext_platforms (id, configcontext_id, platform_id) FROM stdin;
1 1 1
\.
--
-- Data for Name: extras_configcontext_regions; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_configcontext_regions (id, configcontext_id, region_id) FROM stdin;
1 1 1
2 1 2
\.
--
-- Data for Name: extras_configcontext_roles; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_configcontext_roles (id, configcontext_id, devicerole_id) FROM stdin;
1 1 1
2 1 2
\.
--
-- Data for Name: extras_configcontext_sites; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_configcontext_sites (id, configcontext_id, site_id) FROM stdin;
1 1 1
\.
--
-- Data for Name: extras_configcontext_tenant_groups; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_configcontext_tenant_groups (id, configcontext_id, tenantgroup_id) FROM stdin;
1 1 1
\.
--
-- Data for Name: extras_configcontext_tenants; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_configcontext_tenants (id, configcontext_id, tenant_id) FROM stdin;
1 1 1
\.
--
-- Data for Name: extras_customfield; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_customfield (id, type, name, label, description, required, "default", weight, filter_logic) FROM stdin;
\.
--
-- Data for Name: extras_customfield_obj_type; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_customfield_obj_type (id, customfield_id, contenttype_id) FROM stdin;
\.
--
-- Data for Name: extras_customfieldchoice; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_customfieldchoice (id, value, weight, field_id) FROM stdin;
\.
--
-- Data for Name: extras_customfieldvalue; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_customfieldvalue (id, obj_id, serialized_value, field_id, obj_type_id) FROM stdin;
\.
--
-- Data for Name: extras_exporttemplate; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_exporttemplate (id, name, template_code, mime_type, file_extension, content_type_id, description) FROM stdin;
\.
--
-- Data for Name: extras_graph; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_graph (id, type, weight, name, source, link) FROM stdin;
\.
--
-- Data for Name: extras_imageattachment; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_imageattachment (id, object_id, image, image_height, image_width, name, created, content_type_id) FROM stdin;
\.
--
-- Data for Name: extras_reportresult; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_reportresult (id, report, created, failed, data, user_id) FROM stdin;
\.
--
-- Data for Name: extras_topologymap; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_topologymap (id, name, slug, device_patterns, description, site_id, type) FROM stdin;
\.
--
-- Data for Name: extras_useraction; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_useraction (id, "time", object_id, action, message, content_type_id, user_id) FROM stdin;
\.
--
-- Data for Name: extras_webhook; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_webhook (id, name, type_create, type_update, type_delete, payload_url, http_content_type, secret, enabled, ssl_verification) FROM stdin;
\.
--
-- Data for Name: extras_webhook_obj_type; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.extras_webhook_obj_type (id, webhook_id, contenttype_id) FROM stdin;
\.
--
-- Data for Name: ipam_aggregate; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_aggregate (id, created, last_updated, family, prefix, date_added, description, rir_id) FROM stdin;
1 2018-08-10 2018-08-10 01:18:46.868802+00 4 0.0.0.0/8 2018-08-08 Desc of Aggretate 0.0.0.0/8 1
2 2018-08-10 2018-08-10 01:19:11.104189+00 4 10.0.0.0/8 1999-01-02 Desc Of Aggr. 10.0.0.0/8 2
\.
--
-- Data for Name: ipam_ipaddress; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_ipaddress (id, created, last_updated, family, address, description, interface_id, nat_inside_id, vrf_id, tenant_id, status, role) FROM stdin;
1 2018-08-10 2018-08-10 01:21:13.540286+00 4 192.168.1.1/24 Desc of 192.168.1.1 \N \N \N \N 1 \N
2 2018-08-10 2018-08-10 01:21:51.907603+00 4 10.0.0.1/24 Desc of 10.0.0.1/24 \N \N \N \N 1 40
3 2018-08-10 2018-08-10 01:22:29.68238+00 4 0.1.1.1/24 IP in VRF 0 \N \N 1 \N 2 \N
4 2018-08-10 2018-08-10 01:26:55.901043+00 4 10.0.0.100/24 113 \N \N \N 1 \N
5 2018-08-10 2018-08-10 01:27:17.279124+00 4 10.0.0.101/24 114 \N \N \N 1 \N
6 2018-08-10 2018-08-10 01:27:54.568746+00 4 10.0.0.50/24 112 \N \N \N 1 \N
7 2018-08-10 2018-08-10 01:28:07.003557+00 4 10.0.0.51/24 63 \N \N \N 1 \N
8 2018-08-10 2018-08-10 01:28:32.421089+00 4 10.0.0.150/24 5 \N \N \N 1 \N
9 2018-08-10 2018-08-10 01:28:39.349066+00 4 10.0.0.151/24 6 \N \N \N 1 \N
10 2018-08-10 2018-08-10 01:28:53.241309+00 4 10.0.0.152/24 7 \N \N \N 1 \N
11 2018-08-10 2018-08-10 01:29:28.353532+00 4 10.0.0.70/24 12 \N \N \N 1 \N
12 2018-08-10 2018-08-10 01:29:33.822581+00 4 10.0.0.71/24 8 \N \N \N 1 \N
13 2018-08-10 2018-08-10 01:29:46.192062+00 4 10.0.0.80/24 13 \N \N \N 1 \N
14 2018-08-10 2018-08-10 01:29:51.194639+00 4 10.0.0.81/24 14 \N \N \N 1 \N
\.
--
-- Data for Name: ipam_prefix; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_prefix (id, created, last_updated, family, prefix, status, description, role_id, site_id, vlan_id, vrf_id, tenant_id, is_pool) FROM stdin;
1 2018-08-10 2018-08-10 01:23:12.858567+00 4 10.0.0.0/24 1 Desc of 10.0.0.0/24 1 1 1 \N 1 t
\.
--
-- Data for Name: ipam_rir; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_rir (id, name, slug, is_private, created, last_updated) FROM stdin;
1 RIR 0 rir-0 f 2018-08-10 2018-08-10 01:17:38.312406+00
2 Private RIR 0 private-rir-0 t 2018-08-10 2018-08-10 01:17:43.842705+00
\.
--
-- Data for Name: ipam_role; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_role (id, name, slug, weight, created, last_updated) FROM stdin;
1 IPAM Role 0 ipam-role-0 1000 2018-08-10 2018-08-10 01:19:29.747648+00
\.
--
-- Data for Name: ipam_service; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_service (id, created, last_updated, name, protocol, port, description, device_id, virtual_machine_id) FROM stdin;
1 2023-04-23 2023-04-23 15:44:58.595982+00 Service 0 6 443 This is Description \N 1
\.
--
-- Data for Name: ipam_service_ipaddresses; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_service_ipaddresses (id, service_id, ipaddress_id) FROM stdin;
1 1 4
\.
--
-- Data for Name: ipam_vlan; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_vlan (id, created, last_updated, vid, name, status, role_id, site_id, group_id, description, tenant_id) FROM stdin;
1 2018-08-10 2018-08-10 01:20:16.550339+00 42 VLAN Name 42 1 1 1 2 Desc of Vlan 42 1
2 2018-08-10 2018-08-10 01:20:28.130688+00 99 VLAN Name 99 1 \N \N \N \N
\.
--
-- Data for Name: ipam_vlangroup; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_vlangroup (id, name, slug, site_id, created, last_updated) FROM stdin;
1 VLAN Group 0 vlan-group-0 \N 2018-08-10 2018-08-10 01:16:41.78983+00
2 VLAN Group 1 at Site 0 vlan-group-1-at-site-0 1 2018-08-10 2018-08-10 01:16:50.903806+00
\.
--
-- Data for Name: ipam_vrf; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.ipam_vrf (id, created, last_updated, name, rd, description, enforce_unique, tenant_id) FROM stdin;
1 2018-08-10 2018-08-10 01:17:27.323867+00 VRF 0 0 This is a description of VRF 0 t 1
\.
--
-- Data for Name: secrets_secret; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.secrets_secret (id, created, last_updated, name, ciphertext, hash, device_id, role_id) FROM stdin;
1 2018-08-10 2018-08-10 21:02:12.204535+00 Secret 0 \\xce3385b5b58591c8269dd257817deb0e3a8dedbf5b3fe5f9ba4ceeee1f580299a011387c469adddf9a7aa8a48cfd1cf0218506432fc1d972198a266730dbe0c6acd8f7dfc41bf82b0de65df5fc8ca437 pbkdf2_sha256$1000$YO1csXElnbgV$5zLZVoedG8RbrxqJS1nZmQcfYqzHT8IpyoR7NTcwRm0= 8 1
\.
--
-- Data for Name: secrets_secretrole; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.secrets_secretrole (id, name, slug, created, last_updated) FROM stdin;
1 Secret Role 0 secret-role-0 2018-08-10 2018-08-10 01:35:29.922349+00
\.
--
-- Data for Name: secrets_secretrole_groups; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.secrets_secretrole_groups (id, secretrole_id, group_id) FROM stdin;
\.
--
-- Data for Name: secrets_secretrole_users; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.secrets_secretrole_users (id, secretrole_id, user_id) FROM stdin;
\.
--
-- Data for Name: secrets_sessionkey; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.secrets_sessionkey (id, cipher, hash, created, userkey_id) FROM stdin;
\.
--
-- Data for Name: secrets_userkey; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.secrets_userkey (id, created, last_updated, public_key, master_key_cipher, user_id) FROM stdin;
1 2018-08-10 2018-08-10 20:53:10.847351+00 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCrwJIo/BlJt16TM/gGmn/cpaBB0GVB2BX2bOC8J/pyPyHa1i1jTlAo/SltC/VcBfRLWlq97j3E431f+G4Yp0S2i7r9cLcesPLIBDjfBJHSC/fntbsHoMSkCHDoCkg08Vj8pAvvwGpwAS7inBe8nch3AEhgsn0LOuDyv4k/A5U1ZsPRRYx62xQo8qig4pvPVY9nAX0gQxS1NFiztOVDKHlJzucMgjSG9imb1/DL6Ok1ioXzWdBI4XI2A2f9sciaoNVtktLvv8/iRN1shBMN6Y8+ml858yOMSwHVnsn8jtLvHcLyQFcl4aqkLAz9k4yD8C9uIHIBU7SDx9SzWWh7yHS2kmAf5zZwtWBIM30ZGOnIb2ig5DEaE7Gb/SewtVuY5nhsA8G+vBIGuGPvmolr6VdbU+0p+N1pD60JG0L/oCiUK0IyCipEbVPWHpXJ4xbMfbHtW07CPX9N1oB2dlBrCxq9NcJdUPLtexLi55lx05shJ8g/8UwXP0pCmAPaPBni1L+1dOW22DxyF1Hl+WvzwAHNVambjbCHTPeR132mQ3naslTqsnhdGgGbe7d0zXQMrIpVytRUONH0okmDtZyg1xsGdIsUcJFPJu0A9pJE013HNUPTqzoCgaiKsB2z4RyGQRwHmaeH9GpvXcC6al/dozJMT8Lh8XpHa7PJO8g2vhHd6w== netbox-client-ruby \\x1fe983aa5b6e54d56ac7df7f2d4ea01b1d26375cffdfb79bb8bd8c2596cf6b08fd192b8af7a69b946475cdc96e30cd87e8d14005a309532251799c4ca8de6cdece663ef52b1177a54bedcd1575f2c21d21d881ce4a8d6e62ed189635eac446fe9987dd8e3095ce47cdb2095c8637df6795c3a6b85ed08064adc51fe5702301d2cc83008cb5a0d9cc9550a0e7ff751c88b7c00134a3016ace20d661cb95850624c1af1584912c152bb070b46e474edc91fb80971ce8fac9d599755f3c0859af075736a6a4e5127f5b9456a2da29bd673e8a459844f81354fdd43bd461067639425d1b1d6efb800e5007191152962bef335a6f7770efa6a2c7ea99ebad4fd238a5ebaf9e8e4c50ab9366d5992f276c6b52d3192aebc89aeb3c36f5ebdda791dd466c881475d6aa06d40d308c286e03003ba30e7359f96f7b85c90122e02d1166bd1081f9dd0de6d9bd149639e3b39358a0b6bfb3cc9feba4a32d17128d6ebbfa5b57de83bc364c8099f8b1d058bf9f4c723baf26702b4862075912d76cdb43ce2628c56e2f8088bed5022806fca9b82ebf3735d7c9c66301208e99279945568193e89812b20d0290f53e10fa82f49aee994c309399ba7204350932b765a5c9fc6fad6290cc6bb8677b8028619c951fb5e1faf169c842e033afd1b14b254dbb5c48f3d325840e24f89e9865b2a3982e2c430070e1726bb29052611a88bdfef280a6 1
\.
--
-- Data for Name: taggit_tag; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.taggit_tag (id, name, slug) FROM stdin;
1 tag tag
2 special special
3 tenant tenant
4 tag_b tag_b
5 tag_a tag_a
6 tag_c tag_c
7 tag_d tag_d
8 tag_e tag_e
9 tag_x tag_x
\.
--
-- Data for Name: taggit_taggeditem; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.taggit_taggeditem (id, object_id, content_type_id, tag_id) FROM stdin;
5 1 64 4
6 1 64 5
7 1 31 5
8 1 29 4
9 1 29 5
10 2 19 4
11 2 19 6
12 3 19 6
13 3 19 7
14 1 19 4
15 1 19 5
20 3 17 5
21 4 17 4
22 5 17 4
23 4 19 7
24 1 45 8
25 1 39 5
26 2 39 4
27 1 44 6
28 1 40 5
29 1 41 5
30 1 67 5
31 1 70 6
32 1 9 4
33 1 11 5
34 8 17 9
35 1 47 5
\.
--
-- Data for Name: tenancy_tenant; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.tenancy_tenant (id, created, last_updated, name, slug, description, comments, group_id) FROM stdin;
1 2018-08-10 2018-08-10 00:48:22.828258+00 Tenant 0 tenant-0 Description of Tenant 0 1
\.
--
-- Data for Name: tenancy_tenantgroup; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.tenancy_tenantgroup (id, name, slug, created, last_updated) FROM stdin;
1 Tenant Group 0 tenant-group-0 2018-08-10 2018-08-10 00:47:46.145726+00
\.
--
-- Data for Name: users_token; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.users_token (id, created, expires, key, write_enabled, description, user_id) FROM stdin;
1 2018-08-09 22:59:26.794639+00 \N 0123456789abcdef0123456789abcdef01234567 t 1
\.
--
-- Data for Name: virtualization_cluster; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.virtualization_cluster (id, created, last_updated, name, comments, group_id, type_id, site_id) FROM stdin;
1 2018-08-10 2018-08-10 01:24:50.602948+00 Cluster 0 It's a comment. 1 1 1
\.
--
-- Data for Name: virtualization_clustergroup; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.virtualization_clustergroup (id, name, slug, created, last_updated) FROM stdin;
1 Cluster Group 0 cluster-group-0 2018-08-10 2018-08-10 01:24:21.686078+00
\.
--
-- Data for Name: virtualization_clustertype; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.virtualization_clustertype (id, name, slug, created, last_updated) FROM stdin;
1 Cluster Type 0 cluster-type-0 2018-08-10 2018-08-10 01:24:27.109092+00
\.
--
-- Data for Name: virtualization_virtualmachine; Type: TABLE DATA; Schema: public; Owner: netbox
--
COPY public.virtualization_virtualmachine (id, created, last_updated, name, vcpus, memory, disk, comments, cluster_id, platform_id, primary_ip4_id, primary_ip6_id, tenant_id, status, role_id) FROM stdin;
1 2018-08-10 2018-08-10 01:26:55.917514+00 Virtual Machine 0 2 3000 100 # Markdown yes or no? 1 1 4 \N 1 1 1
\.
--
-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.auth_group_id_seq', 1, false);
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 1, false);
--
-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.auth_permission_id_seq', 210, true);
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 1, false);
--
-- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.auth_user_id_seq', 1, true);
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 1, false);
--
-- Name: circuits_circuit_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.circuits_circuit_id_seq', 1, true);
--
-- Name: circuits_circuittermination_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.circuits_circuittermination_id_seq', 1, true);
--
-- Name: circuits_circuittype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.circuits_circuittype_id_seq', 1, true);
--
-- Name: circuits_provider_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.circuits_provider_id_seq', 1, true);
--
-- Name: dcim_consoleport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_consoleport_id_seq', 6, true);
--
-- Name: dcim_consoleporttemplate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_consoleporttemplate_id_seq', 4, true);
--
-- Name: dcim_consoleserverport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_consoleserverport_id_seq', 1, false);
--
-- Name: dcim_consoleserverporttemplate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_consoleserverporttemplate_id_seq', 1, false);
--
-- Name: dcim_device_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_device_id_seq', 8, true);
--
-- Name: dcim_devicebay_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_devicebay_id_seq', 3, true);
--
-- Name: dcim_devicebaytemplate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_devicebaytemplate_id_seq', 2, true);
--
-- Name: dcim_devicerole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_devicerole_id_seq', 2, true);
--
-- Name: dcim_devicetype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_devicetype_id_seq', 4, true);
--
-- Name: dcim_interface_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_interface_id_seq', 121, true);
--
-- Name: dcim_interface_tagged_vlans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_interface_tagged_vlans_id_seq', 1, false);
--
-- Name: dcim_interfaceconnection_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_interfaceconnection_id_seq', 15, true);
--
-- Name: dcim_interfacetemplate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_interfacetemplate_id_seq', 63, true);
--
-- Name: dcim_manufacturer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_manufacturer_id_seq', 1, true);
--
-- Name: dcim_module_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_module_id_seq', 1, false);
--
-- Name: dcim_platform_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_platform_id_seq', 1, true);
--
-- Name: dcim_poweroutlet_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_poweroutlet_id_seq', 1, false);
--
-- Name: dcim_poweroutlettemplate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_poweroutlettemplate_id_seq', 1, false);
--
-- Name: dcim_powerport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_powerport_id_seq', 10, true);
--
-- Name: dcim_powerporttemplate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_powerporttemplate_id_seq', 6, true);
--
-- Name: dcim_rack_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_rack_id_seq', 1, true);
--
-- Name: dcim_rackgroup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_rackgroup_id_seq', 1, true);
--
-- Name: dcim_rackreservation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_rackreservation_id_seq', 1, true);
--
-- Name: dcim_rackrole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_rackrole_id_seq', 1, true);
--
-- Name: dcim_region_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_region_id_seq', 2, true);
--
-- Name: dcim_site_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_site_id_seq', 1, true);
--
-- Name: dcim_virtualchassis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.dcim_virtualchassis_id_seq', 1, true);
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.django_admin_log_id_seq', 1, false);
--
-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.django_content_type_id_seq', 70, true);
--
-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.django_migrations_id_seq', 156, true);
--
-- Name: extras_configcontext_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_configcontext_id_seq', 1, true);
--
-- Name: extras_configcontext_platforms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_configcontext_platforms_id_seq', 1, true);
--
-- Name: extras_configcontext_regions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_configcontext_regions_id_seq', 2, true);
--
-- Name: extras_configcontext_roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_configcontext_roles_id_seq', 2, true);
--
-- Name: extras_configcontext_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_configcontext_sites_id_seq', 1, true);
--
-- Name: extras_configcontext_tenant_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_configcontext_tenant_groups_id_seq', 1, true);
--
-- Name: extras_configcontext_tenants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_configcontext_tenants_id_seq', 1, true);
--
-- Name: extras_customfield_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_customfield_id_seq', 1, false);
--
-- Name: extras_customfield_obj_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_customfield_obj_type_id_seq', 1, false);
--
-- Name: extras_customfieldchoice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_customfieldchoice_id_seq', 1, false);
--
-- Name: extras_customfieldvalue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_customfieldvalue_id_seq', 1, false);
--
-- Name: extras_exporttemplate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_exporttemplate_id_seq', 1, false);
--
-- Name: extras_graph_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_graph_id_seq', 1, false);
--
-- Name: extras_imageattachment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_imageattachment_id_seq', 1, false);
--
-- Name: extras_objectchange_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_objectchange_id_seq', 319, true);
--
-- Name: extras_reportresult_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_reportresult_id_seq', 1, false);
--
-- Name: extras_topologymap_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_topologymap_id_seq', 1, false);
--
-- Name: extras_useraction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_useraction_id_seq', 1, false);
--
-- Name: extras_webhook_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_webhook_id_seq', 1, false);
--
-- Name: extras_webhook_obj_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.extras_webhook_obj_type_id_seq', 1, false);
--
-- Name: ipam_aggregate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_aggregate_id_seq', 2, true);
--
-- Name: ipam_ipaddress_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_ipaddress_id_seq', 14, true);
--
-- Name: ipam_prefix_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_prefix_id_seq', 1, true);
--
-- Name: ipam_rir_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_rir_id_seq', 2, true);
--
-- Name: ipam_role_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_role_id_seq', 1, true);
--
-- Name: ipam_service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_service_id_seq', 1, true);
--
-- Name: ipam_service_ipaddresses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_service_ipaddresses_id_seq', 1, true);
--
-- Name: ipam_vlan_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_vlan_id_seq', 2, true);
--
-- Name: ipam_vlangroup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_vlangroup_id_seq', 2, true);
--
-- Name: ipam_vrf_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.ipam_vrf_id_seq', 1, true);
--
-- Name: secrets_secret_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.secrets_secret_id_seq', 1, true);
--
-- Name: secrets_secretrole_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.secrets_secretrole_groups_id_seq', 1, false);
--
-- Name: secrets_secretrole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.secrets_secretrole_id_seq', 1, true);
--
-- Name: secrets_secretrole_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.secrets_secretrole_users_id_seq', 1, false);
--
-- Name: secrets_sessionkey_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.secrets_sessionkey_id_seq', 1, true);
--
-- Name: secrets_userkey_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.secrets_userkey_id_seq', 1, true);
--
-- Name: taggit_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.taggit_tag_id_seq', 9, true);
--
-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.taggit_taggeditem_id_seq', 35, true);
--
-- Name: tenancy_tenant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.tenancy_tenant_id_seq', 1, true);
--
-- Name: tenancy_tenantgroup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.tenancy_tenantgroup_id_seq', 1, true);
--
-- Name: users_token_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.users_token_id_seq', 1, true);
--
-- Name: virtualization_cluster_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.virtualization_cluster_id_seq', 1, true);
--
-- Name: virtualization_clustergroup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.virtualization_clustergroup_id_seq', 1, true);
--
-- Name: virtualization_clustertype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.virtualization_clustertype_id_seq', 1, true);
--
-- Name: virtualization_virtualmachine_id_seq; Type: SEQUENCE SET; Schema: public; Owner: netbox
--
SELECT pg_catalog.setval('public.virtualization_virtualmachine_id_seq', 1, true);
--
-- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_group
ADD CONSTRAINT auth_group_name_key UNIQUE (name);
--
-- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id);
--
-- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id);
--
-- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_group
ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id);
--
-- Name: auth_permission auth_permission_content_type_id_codename_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename);
--
-- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id);
--
-- Name: auth_user_groups auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id);
--
-- Name: auth_user_groups auth_user_groups_user_id_group_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq UNIQUE (user_id, group_id);
--
-- Name: auth_user auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user
ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id);
--
-- Name: auth_user_user_permissions auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id);
--
-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_permission_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq UNIQUE (user_id, permission_id);
--
-- Name: auth_user auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user
ADD CONSTRAINT auth_user_username_key UNIQUE (username);
--
-- Name: circuits_circuit circuits_circuit_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuit
ADD CONSTRAINT circuits_circuit_pkey PRIMARY KEY (id);
--
-- Name: circuits_circuit circuits_circuit_provider_id_cid_b6f29862_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuit
ADD CONSTRAINT circuits_circuit_provider_id_cid_b6f29862_uniq UNIQUE (provider_id, cid);
--
-- Name: circuits_circuittermination circuits_circuittermination_circuit_id_term_side_b13efd0e_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittermination
ADD CONSTRAINT circuits_circuittermination_circuit_id_term_side_b13efd0e_uniq UNIQUE (circuit_id, term_side);
--
-- Name: circuits_circuittermination circuits_circuittermination_interface_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittermination
ADD CONSTRAINT circuits_circuittermination_interface_id_key UNIQUE (interface_id);
--
-- Name: circuits_circuittermination circuits_circuittermination_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittermination
ADD CONSTRAINT circuits_circuittermination_pkey PRIMARY KEY (id);
--
-- Name: circuits_circuittype circuits_circuittype_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittype
ADD CONSTRAINT circuits_circuittype_name_key UNIQUE (name);
--
-- Name: circuits_circuittype circuits_circuittype_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittype
ADD CONSTRAINT circuits_circuittype_pkey PRIMARY KEY (id);
--
-- Name: circuits_circuittype circuits_circuittype_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittype
ADD CONSTRAINT circuits_circuittype_slug_key UNIQUE (slug);
--
-- Name: circuits_provider circuits_provider_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_provider
ADD CONSTRAINT circuits_provider_name_key UNIQUE (name);
--
-- Name: circuits_provider circuits_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_provider
ADD CONSTRAINT circuits_provider_pkey PRIMARY KEY (id);
--
-- Name: circuits_provider circuits_provider_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_provider
ADD CONSTRAINT circuits_provider_slug_key UNIQUE (slug);
--
-- Name: dcim_consoleport dcim_consoleport_cs_port_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleport
ADD CONSTRAINT dcim_consoleport_cs_port_id_key UNIQUE (cs_port_id);
--
-- Name: dcim_consoleport dcim_consoleport_device_id_name_293786b6_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleport
ADD CONSTRAINT dcim_consoleport_device_id_name_293786b6_uniq UNIQUE (device_id, name);
--
-- Name: dcim_consoleport dcim_consoleport_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleport
ADD CONSTRAINT dcim_consoleport_pkey PRIMARY KEY (id);
--
-- Name: dcim_consoleporttemplate dcim_consoleporttemplate_device_type_id_name_8208f9ca_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleporttemplate
ADD CONSTRAINT dcim_consoleporttemplate_device_type_id_name_8208f9ca_uniq UNIQUE (device_type_id, name);
--
-- Name: dcim_consoleporttemplate dcim_consoleporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleporttemplate
ADD CONSTRAINT dcim_consoleporttemplate_pkey PRIMARY KEY (id);
--
-- Name: dcim_consoleserverport dcim_consoleserverport_device_id_name_fb1c5999_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleserverport
ADD CONSTRAINT dcim_consoleserverport_device_id_name_fb1c5999_uniq UNIQUE (device_id, name);
--
-- Name: dcim_consoleserverport dcim_consoleserverport_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleserverport
ADD CONSTRAINT dcim_consoleserverport_pkey PRIMARY KEY (id);
--
-- Name: dcim_consoleserverporttemplate dcim_consoleserverportte_device_type_id_name_a05c974d_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleserverporttemplate
ADD CONSTRAINT dcim_consoleserverportte_device_type_id_name_a05c974d_uniq UNIQUE (device_type_id, name);
--
-- Name: dcim_consoleserverporttemplate dcim_consoleserverporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleserverporttemplate
ADD CONSTRAINT dcim_consoleserverporttemplate_pkey PRIMARY KEY (id);
--
-- Name: dcim_device dcim_device_asset_tag_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_asset_tag_key UNIQUE (asset_tag);
--
-- Name: dcim_device dcim_device_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_name_key UNIQUE (name);
--
-- Name: dcim_device dcim_device_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_pkey PRIMARY KEY (id);
--
-- Name: dcim_device dcim_device_primary_ip4_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_primary_ip4_id_key UNIQUE (primary_ip4_id);
--
-- Name: dcim_device dcim_device_primary_ip6_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_primary_ip6_id_key UNIQUE (primary_ip6_id);
--
-- Name: dcim_device dcim_device_rack_id_position_face_43208a79_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_rack_id_position_face_43208a79_uniq UNIQUE (rack_id, "position", face);
--
-- Name: dcim_device dcim_device_virtual_chassis_id_vc_position_efea7133_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_virtual_chassis_id_vc_position_efea7133_uniq UNIQUE (virtual_chassis_id, vc_position);
--
-- Name: dcim_devicebay dcim_devicebay_device_id_name_2475a67b_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebay
ADD CONSTRAINT dcim_devicebay_device_id_name_2475a67b_uniq UNIQUE (device_id, name);
--
-- Name: dcim_devicebay dcim_devicebay_installed_device_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebay
ADD CONSTRAINT dcim_devicebay_installed_device_id_key UNIQUE (installed_device_id);
--
-- Name: dcim_devicebay dcim_devicebay_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebay
ADD CONSTRAINT dcim_devicebay_pkey PRIMARY KEY (id);
--
-- Name: dcim_devicebaytemplate dcim_devicebaytemplate_device_type_id_name_8f4899fe_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebaytemplate
ADD CONSTRAINT dcim_devicebaytemplate_device_type_id_name_8f4899fe_uniq UNIQUE (device_type_id, name);
--
-- Name: dcim_devicebaytemplate dcim_devicebaytemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebaytemplate
ADD CONSTRAINT dcim_devicebaytemplate_pkey PRIMARY KEY (id);
--
-- Name: dcim_devicerole dcim_devicerole_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicerole
ADD CONSTRAINT dcim_devicerole_name_key UNIQUE (name);
--
-- Name: dcim_devicerole dcim_devicerole_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicerole
ADD CONSTRAINT dcim_devicerole_pkey PRIMARY KEY (id);
--
-- Name: dcim_devicerole dcim_devicerole_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicerole
ADD CONSTRAINT dcim_devicerole_slug_key UNIQUE (slug);
--
-- Name: dcim_devicetype dcim_devicetype_manufacturer_id_model_17948c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicetype
ADD CONSTRAINT dcim_devicetype_manufacturer_id_model_17948c0c_uniq UNIQUE (manufacturer_id, model);
--
-- Name: dcim_devicetype dcim_devicetype_manufacturer_id_slug_a0b931cb_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicetype
ADD CONSTRAINT dcim_devicetype_manufacturer_id_slug_a0b931cb_uniq UNIQUE (manufacturer_id, slug);
--
-- Name: dcim_devicetype dcim_devicetype_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicetype
ADD CONSTRAINT dcim_devicetype_pkey PRIMARY KEY (id);
--
-- Name: dcim_interface dcim_interface_device_id_name_bffc4ec4_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface
ADD CONSTRAINT dcim_interface_device_id_name_bffc4ec4_uniq UNIQUE (device_id, name);
--
-- Name: dcim_interface dcim_interface_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface
ADD CONSTRAINT dcim_interface_pkey PRIMARY KEY (id);
--
-- Name: dcim_interface_tagged_vlans dcim_interface_tagged_vlans_interface_id_vlan_id_0d55c576_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface_tagged_vlans
ADD CONSTRAINT dcim_interface_tagged_vlans_interface_id_vlan_id_0d55c576_uniq UNIQUE (interface_id, vlan_id);
--
-- Name: dcim_interface_tagged_vlans dcim_interface_tagged_vlans_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface_tagged_vlans
ADD CONSTRAINT dcim_interface_tagged_vlans_pkey PRIMARY KEY (id);
--
-- Name: dcim_interfaceconnection dcim_interfaceconnection_interface_a_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfaceconnection
ADD CONSTRAINT dcim_interfaceconnection_interface_a_id_key UNIQUE (interface_a_id);
--
-- Name: dcim_interfaceconnection dcim_interfaceconnection_interface_b_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfaceconnection
ADD CONSTRAINT dcim_interfaceconnection_interface_b_id_key UNIQUE (interface_b_id);
--
-- Name: dcim_interfaceconnection dcim_interfaceconnection_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfaceconnection
ADD CONSTRAINT dcim_interfaceconnection_pkey PRIMARY KEY (id);
--
-- Name: dcim_interfacetemplate dcim_interfacetemplate_device_type_id_name_3a847237_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfacetemplate
ADD CONSTRAINT dcim_interfacetemplate_device_type_id_name_3a847237_uniq UNIQUE (device_type_id, name);
--
-- Name: dcim_interfacetemplate dcim_interfacetemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfacetemplate
ADD CONSTRAINT dcim_interfacetemplate_pkey PRIMARY KEY (id);
--
-- Name: dcim_inventoryitem dcim_inventoryitem_asset_tag_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_inventoryitem
ADD CONSTRAINT dcim_inventoryitem_asset_tag_key UNIQUE (asset_tag);
--
-- Name: dcim_manufacturer dcim_manufacturer_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_manufacturer
ADD CONSTRAINT dcim_manufacturer_name_key UNIQUE (name);
--
-- Name: dcim_manufacturer dcim_manufacturer_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_manufacturer
ADD CONSTRAINT dcim_manufacturer_pkey PRIMARY KEY (id);
--
-- Name: dcim_manufacturer dcim_manufacturer_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_manufacturer
ADD CONSTRAINT dcim_manufacturer_slug_key UNIQUE (slug);
--
-- Name: dcim_inventoryitem dcim_module_device_id_parent_id_name_4d8292af_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_inventoryitem
ADD CONSTRAINT dcim_module_device_id_parent_id_name_4d8292af_uniq UNIQUE (device_id, parent_id, name);
--
-- Name: dcim_inventoryitem dcim_module_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_inventoryitem
ADD CONSTRAINT dcim_module_pkey PRIMARY KEY (id);
--
-- Name: dcim_platform dcim_platform_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_platform
ADD CONSTRAINT dcim_platform_name_key UNIQUE (name);
--
-- Name: dcim_platform dcim_platform_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_platform
ADD CONSTRAINT dcim_platform_pkey PRIMARY KEY (id);
--
-- Name: dcim_platform dcim_platform_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_platform
ADD CONSTRAINT dcim_platform_slug_key UNIQUE (slug);
--
-- Name: dcim_poweroutlet dcim_poweroutlet_device_id_name_981b00c1_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_poweroutlet
ADD CONSTRAINT dcim_poweroutlet_device_id_name_981b00c1_uniq UNIQUE (device_id, name);
--
-- Name: dcim_poweroutlet dcim_poweroutlet_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_poweroutlet
ADD CONSTRAINT dcim_poweroutlet_pkey PRIMARY KEY (id);
--
-- Name: dcim_poweroutlettemplate dcim_poweroutlettemplate_device_type_id_name_eafbb07d_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_poweroutlettemplate
ADD CONSTRAINT dcim_poweroutlettemplate_device_type_id_name_eafbb07d_uniq UNIQUE (device_type_id, name);
--
-- Name: dcim_poweroutlettemplate dcim_poweroutlettemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_poweroutlettemplate
ADD CONSTRAINT dcim_poweroutlettemplate_pkey PRIMARY KEY (id);
--
-- Name: dcim_powerport dcim_powerport_device_id_name_948af82c_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerport
ADD CONSTRAINT dcim_powerport_device_id_name_948af82c_uniq UNIQUE (device_id, name);
--
-- Name: dcim_powerport dcim_powerport_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerport
ADD CONSTRAINT dcim_powerport_pkey PRIMARY KEY (id);
--
-- Name: dcim_powerport dcim_powerport_power_outlet_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerport
ADD CONSTRAINT dcim_powerport_power_outlet_id_key UNIQUE (power_outlet_id);
--
-- Name: dcim_powerporttemplate dcim_powerporttemplate_device_type_id_name_b4e9689f_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerporttemplate
ADD CONSTRAINT dcim_powerporttemplate_device_type_id_name_b4e9689f_uniq UNIQUE (device_type_id, name);
--
-- Name: dcim_powerporttemplate dcim_powerporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerporttemplate
ADD CONSTRAINT dcim_powerporttemplate_pkey PRIMARY KEY (id);
--
-- Name: dcim_rack dcim_rack_group_id_facility_id_f16a53ae_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rack
ADD CONSTRAINT dcim_rack_group_id_facility_id_f16a53ae_uniq UNIQUE (group_id, facility_id);
--
-- Name: dcim_rack dcim_rack_group_id_name_846f3826_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rack
ADD CONSTRAINT dcim_rack_group_id_name_846f3826_uniq UNIQUE (group_id, name);
--
-- Name: dcim_rack dcim_rack_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rack
ADD CONSTRAINT dcim_rack_pkey PRIMARY KEY (id);
--
-- Name: dcim_rackgroup dcim_rackgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackgroup
ADD CONSTRAINT dcim_rackgroup_pkey PRIMARY KEY (id);
--
-- Name: dcim_rackgroup dcim_rackgroup_site_id_name_c9bd921f_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackgroup
ADD CONSTRAINT dcim_rackgroup_site_id_name_c9bd921f_uniq UNIQUE (site_id, name);
--
-- Name: dcim_rackgroup dcim_rackgroup_site_id_slug_7fbfd118_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackgroup
ADD CONSTRAINT dcim_rackgroup_site_id_slug_7fbfd118_uniq UNIQUE (site_id, slug);
--
-- Name: dcim_rackreservation dcim_rackreservation_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackreservation
ADD CONSTRAINT dcim_rackreservation_pkey PRIMARY KEY (id);
--
-- Name: dcim_rackrole dcim_rackrole_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackrole
ADD CONSTRAINT dcim_rackrole_name_key UNIQUE (name);
--
-- Name: dcim_rackrole dcim_rackrole_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackrole
ADD CONSTRAINT dcim_rackrole_pkey PRIMARY KEY (id);
--
-- Name: dcim_rackrole dcim_rackrole_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackrole
ADD CONSTRAINT dcim_rackrole_slug_key UNIQUE (slug);
--
-- Name: dcim_region dcim_region_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_region
ADD CONSTRAINT dcim_region_name_key UNIQUE (name);
--
-- Name: dcim_region dcim_region_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_region
ADD CONSTRAINT dcim_region_pkey PRIMARY KEY (id);
--
-- Name: dcim_region dcim_region_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_region
ADD CONSTRAINT dcim_region_slug_key UNIQUE (slug);
--
-- Name: dcim_site dcim_site_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_site
ADD CONSTRAINT dcim_site_name_key UNIQUE (name);
--
-- Name: dcim_site dcim_site_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_site
ADD CONSTRAINT dcim_site_pkey PRIMARY KEY (id);
--
-- Name: dcim_site dcim_site_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_site
ADD CONSTRAINT dcim_site_slug_key UNIQUE (slug);
--
-- Name: dcim_virtualchassis dcim_virtualchassis_master_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_virtualchassis
ADD CONSTRAINT dcim_virtualchassis_master_id_key UNIQUE (master_id);
--
-- Name: dcim_virtualchassis dcim_virtualchassis_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_virtualchassis
ADD CONSTRAINT dcim_virtualchassis_pkey PRIMARY KEY (id);
--
-- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id);
--
-- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_content_type
ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model);
--
-- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_content_type
ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id);
--
-- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_migrations
ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id);
--
-- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_session
ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key);
--
-- Name: extras_configcontext extras_configcontext_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext
ADD CONSTRAINT extras_configcontext_name_key UNIQUE (name);
--
-- Name: extras_configcontext extras_configcontext_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext
ADD CONSTRAINT extras_configcontext_pkey PRIMARY KEY (id);
--
-- Name: extras_configcontext_platforms extras_configcontext_pla_configcontext_id_platfor_3c67c104_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_platforms
ADD CONSTRAINT extras_configcontext_pla_configcontext_id_platfor_3c67c104_uniq UNIQUE (configcontext_id, platform_id);
--
-- Name: extras_configcontext_platforms extras_configcontext_platforms_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_platforms
ADD CONSTRAINT extras_configcontext_platforms_pkey PRIMARY KEY (id);
--
-- Name: extras_configcontext_regions extras_configcontext_reg_configcontext_id_region__d4a1d77f_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_regions
ADD CONSTRAINT extras_configcontext_reg_configcontext_id_region__d4a1d77f_uniq UNIQUE (configcontext_id, region_id);
--
-- Name: extras_configcontext_regions extras_configcontext_regions_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_regions
ADD CONSTRAINT extras_configcontext_regions_pkey PRIMARY KEY (id);
--
-- Name: extras_configcontext_roles extras_configcontext_rol_configcontext_id_devicer_4d8dbb50_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_roles
ADD CONSTRAINT extras_configcontext_rol_configcontext_id_devicer_4d8dbb50_uniq UNIQUE (configcontext_id, devicerole_id);
--
-- Name: extras_configcontext_roles extras_configcontext_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_roles
ADD CONSTRAINT extras_configcontext_roles_pkey PRIMARY KEY (id);
--
-- Name: extras_configcontext_sites extras_configcontext_sit_configcontext_id_site_id_a4fe5f4f_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_sites
ADD CONSTRAINT extras_configcontext_sit_configcontext_id_site_id_a4fe5f4f_uniq UNIQUE (configcontext_id, site_id);
--
-- Name: extras_configcontext_sites extras_configcontext_sites_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_sites
ADD CONSTRAINT extras_configcontext_sites_pkey PRIMARY KEY (id);
--
-- Name: extras_configcontext_tenants extras_configcontext_ten_configcontext_id_tenant__aefb257d_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenants
ADD CONSTRAINT extras_configcontext_ten_configcontext_id_tenant__aefb257d_uniq UNIQUE (configcontext_id, tenant_id);
--
-- Name: extras_configcontext_tenant_groups extras_configcontext_ten_configcontext_id_tenantg_d6afc6f5_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenant_groups
ADD CONSTRAINT extras_configcontext_ten_configcontext_id_tenantg_d6afc6f5_uniq UNIQUE (configcontext_id, tenantgroup_id);
--
-- Name: extras_configcontext_tenant_groups extras_configcontext_tenant_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenant_groups
ADD CONSTRAINT extras_configcontext_tenant_groups_pkey PRIMARY KEY (id);
--
-- Name: extras_configcontext_tenants extras_configcontext_tenants_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenants
ADD CONSTRAINT extras_configcontext_tenants_pkey PRIMARY KEY (id);
--
-- Name: extras_customfield extras_customfield_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfield
ADD CONSTRAINT extras_customfield_name_key UNIQUE (name);
--
-- Name: extras_customfield_obj_type extras_customfield_obj_t_customfield_id_contentty_77878958_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfield_obj_type
ADD CONSTRAINT extras_customfield_obj_t_customfield_id_contentty_77878958_uniq UNIQUE (customfield_id, contenttype_id);
--
-- Name: extras_customfield_obj_type extras_customfield_obj_type_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfield_obj_type
ADD CONSTRAINT extras_customfield_obj_type_pkey PRIMARY KEY (id);
--
-- Name: extras_customfield extras_customfield_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfield
ADD CONSTRAINT extras_customfield_pkey PRIMARY KEY (id);
--
-- Name: extras_customfieldchoice extras_customfieldchoice_field_id_value_f959a108_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfieldchoice
ADD CONSTRAINT extras_customfieldchoice_field_id_value_f959a108_uniq UNIQUE (field_id, value);
--
-- Name: extras_customfieldchoice extras_customfieldchoice_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfieldchoice
ADD CONSTRAINT extras_customfieldchoice_pkey PRIMARY KEY (id);
--
-- Name: extras_customfieldvalue extras_customfieldvalue_field_id_obj_type_id_obj_876f6d9c_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfieldvalue
ADD CONSTRAINT extras_customfieldvalue_field_id_obj_type_id_obj_876f6d9c_uniq UNIQUE (field_id, obj_type_id, obj_id);
--
-- Name: extras_customfieldvalue extras_customfieldvalue_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfieldvalue
ADD CONSTRAINT extras_customfieldvalue_pkey PRIMARY KEY (id);
--
-- Name: extras_exporttemplate extras_exporttemplate_content_type_id_name_edca9b9b_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_exporttemplate
ADD CONSTRAINT extras_exporttemplate_content_type_id_name_edca9b9b_uniq UNIQUE (content_type_id, name);
--
-- Name: extras_exporttemplate extras_exporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_exporttemplate
ADD CONSTRAINT extras_exporttemplate_pkey PRIMARY KEY (id);
--
-- Name: extras_graph extras_graph_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_graph
ADD CONSTRAINT extras_graph_pkey PRIMARY KEY (id);
--
-- Name: extras_imageattachment extras_imageattachment_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_imageattachment
ADD CONSTRAINT extras_imageattachment_pkey PRIMARY KEY (id);
--
-- Name: extras_objectchange extras_objectchange_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_objectchange
ADD CONSTRAINT extras_objectchange_pkey PRIMARY KEY (id);
--
-- Name: extras_reportresult extras_reportresult_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_reportresult
ADD CONSTRAINT extras_reportresult_pkey PRIMARY KEY (id);
--
-- Name: extras_reportresult extras_reportresult_report_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_reportresult
ADD CONSTRAINT extras_reportresult_report_key UNIQUE (report);
--
-- Name: extras_topologymap extras_topologymap_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_topologymap
ADD CONSTRAINT extras_topologymap_name_key UNIQUE (name);
--
-- Name: extras_topologymap extras_topologymap_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_topologymap
ADD CONSTRAINT extras_topologymap_pkey PRIMARY KEY (id);
--
-- Name: extras_topologymap extras_topologymap_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_topologymap
ADD CONSTRAINT extras_topologymap_slug_key UNIQUE (slug);
--
-- Name: extras_useraction extras_useraction_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_useraction
ADD CONSTRAINT extras_useraction_pkey PRIMARY KEY (id);
--
-- Name: extras_webhook extras_webhook_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_webhook
ADD CONSTRAINT extras_webhook_name_key UNIQUE (name);
--
-- Name: extras_webhook_obj_type extras_webhook_obj_type_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_webhook_obj_type
ADD CONSTRAINT extras_webhook_obj_type_pkey PRIMARY KEY (id);
--
-- Name: extras_webhook_obj_type extras_webhook_obj_type_webhook_id_contenttype_id_99b8b9c3_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_webhook_obj_type
ADD CONSTRAINT extras_webhook_obj_type_webhook_id_contenttype_id_99b8b9c3_uniq UNIQUE (webhook_id, contenttype_id);
--
-- Name: extras_webhook extras_webhook_payload_url_type_create__dd332134_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_webhook
ADD CONSTRAINT extras_webhook_payload_url_type_create__dd332134_uniq UNIQUE (payload_url, type_create, type_update, type_delete);
--
-- Name: extras_webhook extras_webhook_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_webhook
ADD CONSTRAINT extras_webhook_pkey PRIMARY KEY (id);
--
-- Name: ipam_aggregate ipam_aggregate_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_aggregate
ADD CONSTRAINT ipam_aggregate_pkey PRIMARY KEY (id);
--
-- Name: ipam_ipaddress ipam_ipaddress_nat_inside_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_ipaddress
ADD CONSTRAINT ipam_ipaddress_nat_inside_id_key UNIQUE (nat_inside_id);
--
-- Name: ipam_ipaddress ipam_ipaddress_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_ipaddress
ADD CONSTRAINT ipam_ipaddress_pkey PRIMARY KEY (id);
--
-- Name: ipam_prefix ipam_prefix_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_prefix
ADD CONSTRAINT ipam_prefix_pkey PRIMARY KEY (id);
--
-- Name: ipam_rir ipam_rir_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_rir
ADD CONSTRAINT ipam_rir_name_key UNIQUE (name);
--
-- Name: ipam_rir ipam_rir_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_rir
ADD CONSTRAINT ipam_rir_pkey PRIMARY KEY (id);
--
-- Name: ipam_rir ipam_rir_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_rir
ADD CONSTRAINT ipam_rir_slug_key UNIQUE (slug);
--
-- Name: ipam_role ipam_role_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_role
ADD CONSTRAINT ipam_role_name_key UNIQUE (name);
--
-- Name: ipam_role ipam_role_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_role
ADD CONSTRAINT ipam_role_pkey PRIMARY KEY (id);
--
-- Name: ipam_role ipam_role_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_role
ADD CONSTRAINT ipam_role_slug_key UNIQUE (slug);
--
-- Name: ipam_service_ipaddresses ipam_service_ipaddresses_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_service_ipaddresses
ADD CONSTRAINT ipam_service_ipaddresses_pkey PRIMARY KEY (id);
--
-- Name: ipam_service_ipaddresses ipam_service_ipaddresses_service_id_ipaddress_id_d019a805_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_service_ipaddresses
ADD CONSTRAINT ipam_service_ipaddresses_service_id_ipaddress_id_d019a805_uniq UNIQUE (service_id, ipaddress_id);
--
-- Name: ipam_service ipam_service_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_service
ADD CONSTRAINT ipam_service_pkey PRIMARY KEY (id);
--
-- Name: ipam_vlan ipam_vlan_group_id_name_e53919df_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlan
ADD CONSTRAINT ipam_vlan_group_id_name_e53919df_uniq UNIQUE (group_id, name);
--
-- Name: ipam_vlan ipam_vlan_group_id_vid_5ca4cc47_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlan
ADD CONSTRAINT ipam_vlan_group_id_vid_5ca4cc47_uniq UNIQUE (group_id, vid);
--
-- Name: ipam_vlan ipam_vlan_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlan
ADD CONSTRAINT ipam_vlan_pkey PRIMARY KEY (id);
--
-- Name: ipam_vlangroup ipam_vlangroup_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlangroup
ADD CONSTRAINT ipam_vlangroup_pkey PRIMARY KEY (id);
--
-- Name: ipam_vlangroup ipam_vlangroup_site_id_name_a38e981b_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlangroup
ADD CONSTRAINT ipam_vlangroup_site_id_name_a38e981b_uniq UNIQUE (site_id, name);
--
-- Name: ipam_vlangroup ipam_vlangroup_site_id_slug_6372a304_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlangroup
ADD CONSTRAINT ipam_vlangroup_site_id_slug_6372a304_uniq UNIQUE (site_id, slug);
--
-- Name: ipam_vrf ipam_vrf_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vrf
ADD CONSTRAINT ipam_vrf_pkey PRIMARY KEY (id);
--
-- Name: ipam_vrf ipam_vrf_rd_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vrf
ADD CONSTRAINT ipam_vrf_rd_key UNIQUE (rd);
--
-- Name: secrets_secret secrets_secret_device_id_role_id_name_f8acc218_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secret
ADD CONSTRAINT secrets_secret_device_id_role_id_name_f8acc218_uniq UNIQUE (device_id, role_id, name);
--
-- Name: secrets_secret secrets_secret_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secret
ADD CONSTRAINT secrets_secret_pkey PRIMARY KEY (id);
--
-- Name: secrets_secretrole_groups secrets_secretrole_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_groups
ADD CONSTRAINT secrets_secretrole_groups_pkey PRIMARY KEY (id);
--
-- Name: secrets_secretrole_groups secrets_secretrole_groups_secretrole_id_group_id_1c7f7ee5_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_groups
ADD CONSTRAINT secrets_secretrole_groups_secretrole_id_group_id_1c7f7ee5_uniq UNIQUE (secretrole_id, group_id);
--
-- Name: secrets_secretrole secrets_secretrole_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole
ADD CONSTRAINT secrets_secretrole_name_key UNIQUE (name);
--
-- Name: secrets_secretrole secrets_secretrole_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole
ADD CONSTRAINT secrets_secretrole_pkey PRIMARY KEY (id);
--
-- Name: secrets_secretrole secrets_secretrole_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole
ADD CONSTRAINT secrets_secretrole_slug_key UNIQUE (slug);
--
-- Name: secrets_secretrole_users secrets_secretrole_users_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_users
ADD CONSTRAINT secrets_secretrole_users_pkey PRIMARY KEY (id);
--
-- Name: secrets_secretrole_users secrets_secretrole_users_secretrole_id_user_id_41832d38_uniq; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_users
ADD CONSTRAINT secrets_secretrole_users_secretrole_id_user_id_41832d38_uniq UNIQUE (secretrole_id, user_id);
--
-- Name: secrets_sessionkey secrets_sessionkey_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_sessionkey
ADD CONSTRAINT secrets_sessionkey_pkey PRIMARY KEY (id);
--
-- Name: secrets_sessionkey secrets_sessionkey_userkey_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_sessionkey
ADD CONSTRAINT secrets_sessionkey_userkey_id_key UNIQUE (userkey_id);
--
-- Name: secrets_userkey secrets_userkey_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_userkey
ADD CONSTRAINT secrets_userkey_pkey PRIMARY KEY (id);
--
-- Name: secrets_userkey secrets_userkey_user_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_userkey
ADD CONSTRAINT secrets_userkey_user_id_key UNIQUE (user_id);
--
-- Name: taggit_tag taggit_tag_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.taggit_tag
ADD CONSTRAINT taggit_tag_name_key UNIQUE (name);
--
-- Name: taggit_tag taggit_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.taggit_tag
ADD CONSTRAINT taggit_tag_pkey PRIMARY KEY (id);
--
-- Name: taggit_tag taggit_tag_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.taggit_tag
ADD CONSTRAINT taggit_tag_slug_key UNIQUE (slug);
--
-- Name: taggit_taggeditem taggit_taggeditem_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.taggit_taggeditem
ADD CONSTRAINT taggit_taggeditem_pkey PRIMARY KEY (id);
--
-- Name: tenancy_tenant tenancy_tenant_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.tenancy_tenant
ADD CONSTRAINT tenancy_tenant_name_key UNIQUE (name);
--
-- Name: tenancy_tenant tenancy_tenant_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.tenancy_tenant
ADD CONSTRAINT tenancy_tenant_pkey PRIMARY KEY (id);
--
-- Name: tenancy_tenant tenancy_tenant_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.tenancy_tenant
ADD CONSTRAINT tenancy_tenant_slug_key UNIQUE (slug);
--
-- Name: tenancy_tenantgroup tenancy_tenantgroup_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.tenancy_tenantgroup
ADD CONSTRAINT tenancy_tenantgroup_name_key UNIQUE (name);
--
-- Name: tenancy_tenantgroup tenancy_tenantgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.tenancy_tenantgroup
ADD CONSTRAINT tenancy_tenantgroup_pkey PRIMARY KEY (id);
--
-- Name: tenancy_tenantgroup tenancy_tenantgroup_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.tenancy_tenantgroup
ADD CONSTRAINT tenancy_tenantgroup_slug_key UNIQUE (slug);
--
-- Name: users_token users_token_key_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.users_token
ADD CONSTRAINT users_token_key_key UNIQUE (key);
--
-- Name: users_token users_token_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.users_token
ADD CONSTRAINT users_token_pkey PRIMARY KEY (id);
--
-- Name: virtualization_cluster virtualization_cluster_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_cluster
ADD CONSTRAINT virtualization_cluster_name_key UNIQUE (name);
--
-- Name: virtualization_cluster virtualization_cluster_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_cluster
ADD CONSTRAINT virtualization_cluster_pkey PRIMARY KEY (id);
--
-- Name: virtualization_clustergroup virtualization_clustergroup_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_clustergroup
ADD CONSTRAINT virtualization_clustergroup_name_key UNIQUE (name);
--
-- Name: virtualization_clustergroup virtualization_clustergroup_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_clustergroup
ADD CONSTRAINT virtualization_clustergroup_pkey PRIMARY KEY (id);
--
-- Name: virtualization_clustergroup virtualization_clustergroup_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_clustergroup
ADD CONSTRAINT virtualization_clustergroup_slug_key UNIQUE (slug);
--
-- Name: virtualization_clustertype virtualization_clustertype_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_clustertype
ADD CONSTRAINT virtualization_clustertype_name_key UNIQUE (name);
--
-- Name: virtualization_clustertype virtualization_clustertype_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_clustertype
ADD CONSTRAINT virtualization_clustertype_pkey PRIMARY KEY (id);
--
-- Name: virtualization_clustertype virtualization_clustertype_slug_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_clustertype
ADD CONSTRAINT virtualization_clustertype_slug_key UNIQUE (slug);
--
-- Name: virtualization_virtualmachine virtualization_virtualmachine_name_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtualmachine_name_key UNIQUE (name);
--
-- Name: virtualization_virtualmachine virtualization_virtualmachine_pkey; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtualmachine_pkey PRIMARY KEY (id);
--
-- Name: virtualization_virtualmachine virtualization_virtualmachine_primary_ip4_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtualmachine_primary_ip4_id_key UNIQUE (primary_ip4_id);
--
-- Name: virtualization_virtualmachine virtualization_virtualmachine_primary_ip6_id_key; Type: CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtualmachine_primary_ip6_id_key UNIQUE (primary_ip6_id);
--
-- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops);
--
-- Name: auth_group_permissions_group_id_b120cbf9; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id);
--
-- Name: auth_group_permissions_permission_id_84c5c92e; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id);
--
-- Name: auth_permission_content_type_id_2f476e4b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id);
--
-- Name: auth_user_groups_group_id_97559544; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX auth_user_groups_group_id_97559544 ON public.auth_user_groups USING btree (group_id);
--
-- Name: auth_user_groups_user_id_6a12ed8b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX auth_user_groups_user_id_6a12ed8b ON public.auth_user_groups USING btree (user_id);
--
-- Name: auth_user_user_permissions_permission_id_1fbb5f2c; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX auth_user_user_permissions_permission_id_1fbb5f2c ON public.auth_user_user_permissions USING btree (permission_id);
--
-- Name: auth_user_user_permissions_user_id_a95ead1b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX auth_user_user_permissions_user_id_a95ead1b ON public.auth_user_user_permissions USING btree (user_id);
--
-- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX auth_user_username_6821ab7c_like ON public.auth_user USING btree (username varchar_pattern_ops);
--
-- Name: circuits_circuit_provider_id_d9195418; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX circuits_circuit_provider_id_d9195418 ON public.circuits_circuit USING btree (provider_id);
--
-- Name: circuits_circuit_tenant_id_812508a5; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX circuits_circuit_tenant_id_812508a5 ON public.circuits_circuit USING btree (tenant_id);
--
-- Name: circuits_circuit_type_id_1b9f485a; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX circuits_circuit_type_id_1b9f485a ON public.circuits_circuit USING btree (type_id);
--
-- Name: circuits_circuittermination_circuit_id_257e87e7; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX circuits_circuittermination_circuit_id_257e87e7 ON public.circuits_circuittermination USING btree (circuit_id);
--
-- Name: circuits_circuittermination_site_id_e6fe5652; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX circuits_circuittermination_site_id_e6fe5652 ON public.circuits_circuittermination USING btree (site_id);
--
-- Name: circuits_circuittype_name_8256ea9a_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX circuits_circuittype_name_8256ea9a_like ON public.circuits_circuittype USING btree (name varchar_pattern_ops);
--
-- Name: circuits_circuittype_slug_9b4b3cf9_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX circuits_circuittype_slug_9b4b3cf9_like ON public.circuits_circuittype USING btree (slug varchar_pattern_ops);
--
-- Name: circuits_provider_name_8f2514f5_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX circuits_provider_name_8f2514f5_like ON public.circuits_provider USING btree (name varchar_pattern_ops);
--
-- Name: circuits_provider_slug_c3c0aa10_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX circuits_provider_slug_c3c0aa10_like ON public.circuits_provider USING btree (slug varchar_pattern_ops);
--
-- Name: dcim_consoleport_device_id_f2d90d3c; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_consoleport_device_id_f2d90d3c ON public.dcim_consoleport USING btree (device_id);
--
-- Name: dcim_consoleporttemplate_device_type_id_075d4015; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_consoleporttemplate_device_type_id_075d4015 ON public.dcim_consoleporttemplate USING btree (device_type_id);
--
-- Name: dcim_consoleserverport_device_id_d9866581; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_consoleserverport_device_id_d9866581 ON public.dcim_consoleserverport USING btree (device_id);
--
-- Name: dcim_consoleserverporttemplate_device_type_id_579bdc86; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_consoleserverporttemplate_device_type_id_579bdc86 ON public.dcim_consoleserverporttemplate USING btree (device_type_id);
--
-- Name: dcim_device_asset_tag_8dac1079_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_asset_tag_8dac1079_like ON public.dcim_device USING btree (asset_tag varchar_pattern_ops);
--
-- Name: dcim_device_cluster_id_cf852f78; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_cluster_id_cf852f78 ON public.dcim_device USING btree (cluster_id);
--
-- Name: dcim_device_device_role_id_682e8188; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_device_role_id_682e8188 ON public.dcim_device USING btree (device_role_id);
--
-- Name: dcim_device_device_type_id_d61b4086; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_device_type_id_d61b4086 ON public.dcim_device USING btree (device_type_id);
--
-- Name: dcim_device_name_cfa61dd8_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_name_cfa61dd8_like ON public.dcim_device USING btree (name varchar_pattern_ops);
--
-- Name: dcim_device_platform_id_468138f1; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_platform_id_468138f1 ON public.dcim_device USING btree (platform_id);
--
-- Name: dcim_device_rack_id_23bde71f; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_rack_id_23bde71f ON public.dcim_device USING btree (rack_id);
--
-- Name: dcim_device_site_id_ff897cf6; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_site_id_ff897cf6 ON public.dcim_device USING btree (site_id);
--
-- Name: dcim_device_tenant_id_dcea7969; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_tenant_id_dcea7969 ON public.dcim_device USING btree (tenant_id);
--
-- Name: dcim_device_virtual_chassis_id_aed51693; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_device_virtual_chassis_id_aed51693 ON public.dcim_device USING btree (virtual_chassis_id);
--
-- Name: dcim_devicebay_device_id_0c8a1218; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_devicebay_device_id_0c8a1218 ON public.dcim_devicebay USING btree (device_id);
--
-- Name: dcim_devicebaytemplate_device_type_id_f4b24a29; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_devicebaytemplate_device_type_id_f4b24a29 ON public.dcim_devicebaytemplate USING btree (device_type_id);
--
-- Name: dcim_devicerole_name_1c813306_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_devicerole_name_1c813306_like ON public.dcim_devicerole USING btree (name varchar_pattern_ops);
--
-- Name: dcim_devicerole_slug_7952643b_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_devicerole_slug_7952643b_like ON public.dcim_devicerole USING btree (slug varchar_pattern_ops);
--
-- Name: dcim_devicetype_manufacturer_id_a3e8029e; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_devicetype_manufacturer_id_a3e8029e ON public.dcim_devicetype USING btree (manufacturer_id);
--
-- Name: dcim_devicetype_slug_448745bd; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_devicetype_slug_448745bd ON public.dcim_devicetype USING btree (slug);
--
-- Name: dcim_devicetype_slug_448745bd_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_devicetype_slug_448745bd_like ON public.dcim_devicetype USING btree (slug varchar_pattern_ops);
--
-- Name: dcim_interface_device_id_359c6115; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_interface_device_id_359c6115 ON public.dcim_interface USING btree (device_id);
--
-- Name: dcim_interface_lag_id_ea1a1d12; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_interface_lag_id_ea1a1d12 ON public.dcim_interface USING btree (lag_id);
--
-- Name: dcim_interface_tagged_vlans_interface_id_5870c9e9; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_interface_tagged_vlans_interface_id_5870c9e9 ON public.dcim_interface_tagged_vlans USING btree (interface_id);
--
-- Name: dcim_interface_tagged_vlans_vlan_id_e027005c; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_interface_tagged_vlans_vlan_id_e027005c ON public.dcim_interface_tagged_vlans USING btree (vlan_id);
--
-- Name: dcim_interface_untagged_vlan_id_838dc7be; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_interface_untagged_vlan_id_838dc7be ON public.dcim_interface USING btree (untagged_vlan_id);
--
-- Name: dcim_interface_virtual_machine_id_2afd2d50; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_interface_virtual_machine_id_2afd2d50 ON public.dcim_interface USING btree (virtual_machine_id);
--
-- Name: dcim_interfacetemplate_device_type_id_4bfcbfab; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_interfacetemplate_device_type_id_4bfcbfab ON public.dcim_interfacetemplate USING btree (device_type_id);
--
-- Name: dcim_inventoryitem_asset_tag_d3289273_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_inventoryitem_asset_tag_d3289273_like ON public.dcim_inventoryitem USING btree (asset_tag varchar_pattern_ops);
--
-- Name: dcim_manufacturer_name_841fcd92_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_manufacturer_name_841fcd92_like ON public.dcim_manufacturer USING btree (name varchar_pattern_ops);
--
-- Name: dcim_manufacturer_slug_00430749_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_manufacturer_slug_00430749_like ON public.dcim_manufacturer USING btree (slug varchar_pattern_ops);
--
-- Name: dcim_module_device_id_53cfd5be; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_module_device_id_53cfd5be ON public.dcim_inventoryitem USING btree (device_id);
--
-- Name: dcim_module_manufacturer_id_95322cbb; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_module_manufacturer_id_95322cbb ON public.dcim_inventoryitem USING btree (manufacturer_id);
--
-- Name: dcim_module_parent_id_bb5d0341; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_module_parent_id_bb5d0341 ON public.dcim_inventoryitem USING btree (parent_id);
--
-- Name: dcim_platform_manufacturer_id_83f72d3d; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_platform_manufacturer_id_83f72d3d ON public.dcim_platform USING btree (manufacturer_id);
--
-- Name: dcim_platform_name_c2f04255_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_platform_name_c2f04255_like ON public.dcim_platform USING btree (name varchar_pattern_ops);
--
-- Name: dcim_platform_slug_b0908ae4_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_platform_slug_b0908ae4_like ON public.dcim_platform USING btree (slug varchar_pattern_ops);
--
-- Name: dcim_poweroutlet_device_id_286351d7; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_poweroutlet_device_id_286351d7 ON public.dcim_poweroutlet USING btree (device_id);
--
-- Name: dcim_poweroutlettemplate_device_type_id_26b2316c; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_poweroutlettemplate_device_type_id_26b2316c ON public.dcim_poweroutlettemplate USING btree (device_type_id);
--
-- Name: dcim_powerport_device_id_ef7185ae; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_powerport_device_id_ef7185ae ON public.dcim_powerport USING btree (device_id);
--
-- Name: dcim_powerporttemplate_device_type_id_1ddfbfcc; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_powerporttemplate_device_type_id_1ddfbfcc ON public.dcim_powerporttemplate USING btree (device_type_id);
--
-- Name: dcim_rack_group_id_44e90ea9; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rack_group_id_44e90ea9 ON public.dcim_rack USING btree (group_id);
--
-- Name: dcim_rack_role_id_62d6919e; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rack_role_id_62d6919e ON public.dcim_rack USING btree (role_id);
--
-- Name: dcim_rack_site_id_403c7b3a; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rack_site_id_403c7b3a ON public.dcim_rack USING btree (site_id);
--
-- Name: dcim_rack_tenant_id_7cdf3725; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rack_tenant_id_7cdf3725 ON public.dcim_rack USING btree (tenant_id);
--
-- Name: dcim_rackgroup_site_id_13520e89; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rackgroup_site_id_13520e89 ON public.dcim_rackgroup USING btree (site_id);
--
-- Name: dcim_rackgroup_slug_3f4582a7; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rackgroup_slug_3f4582a7 ON public.dcim_rackgroup USING btree (slug);
--
-- Name: dcim_rackgroup_slug_3f4582a7_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rackgroup_slug_3f4582a7_like ON public.dcim_rackgroup USING btree (slug varchar_pattern_ops);
--
-- Name: dcim_rackreservation_rack_id_1ebbaa9b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rackreservation_rack_id_1ebbaa9b ON public.dcim_rackreservation USING btree (rack_id);
--
-- Name: dcim_rackreservation_tenant_id_eb5e045f; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rackreservation_tenant_id_eb5e045f ON public.dcim_rackreservation USING btree (tenant_id);
--
-- Name: dcim_rackreservation_user_id_0785a527; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rackreservation_user_id_0785a527 ON public.dcim_rackreservation USING btree (user_id);
--
-- Name: dcim_rackrole_name_9077cfcc_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rackrole_name_9077cfcc_like ON public.dcim_rackrole USING btree (name varchar_pattern_ops);
--
-- Name: dcim_rackrole_slug_40bbcd3a_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_rackrole_slug_40bbcd3a_like ON public.dcim_rackrole USING btree (slug varchar_pattern_ops);
--
-- Name: dcim_region_level_2cee781b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_region_level_2cee781b ON public.dcim_region USING btree (level);
--
-- Name: dcim_region_lft_923d059c; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_region_lft_923d059c ON public.dcim_region USING btree (lft);
--
-- Name: dcim_region_name_ba5a7082_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_region_name_ba5a7082_like ON public.dcim_region USING btree (name varchar_pattern_ops);
--
-- Name: dcim_region_parent_id_2486f5d4; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_region_parent_id_2486f5d4 ON public.dcim_region USING btree (parent_id);
--
-- Name: dcim_region_rght_20f888e3; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_region_rght_20f888e3 ON public.dcim_region USING btree (rght);
--
-- Name: dcim_region_slug_ff078a66_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_region_slug_ff078a66_like ON public.dcim_region USING btree (slug varchar_pattern_ops);
--
-- Name: dcim_region_tree_id_a09ea9a7; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_region_tree_id_a09ea9a7 ON public.dcim_region USING btree (tree_id);
--
-- Name: dcim_site_name_8fe66c76_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_site_name_8fe66c76_like ON public.dcim_site USING btree (name varchar_pattern_ops);
--
-- Name: dcim_site_region_id_45210932; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_site_region_id_45210932 ON public.dcim_site USING btree (region_id);
--
-- Name: dcim_site_slug_4412c762_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_site_slug_4412c762_like ON public.dcim_site USING btree (slug varchar_pattern_ops);
--
-- Name: dcim_site_tenant_id_15e7df63; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX dcim_site_tenant_id_15e7df63 ON public.dcim_site USING btree (tenant_id);
--
-- Name: django_admin_log_content_type_id_c4bce8eb; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX django_admin_log_content_type_id_c4bce8eb ON public.django_admin_log USING btree (content_type_id);
--
-- Name: django_admin_log_user_id_c564eba6; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX django_admin_log_user_id_c564eba6 ON public.django_admin_log USING btree (user_id);
--
-- Name: django_session_expire_date_a5c62663; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX django_session_expire_date_a5c62663 ON public.django_session USING btree (expire_date);
--
-- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops);
--
-- Name: extras_configcontext_name_4bbfe25d_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_name_4bbfe25d_like ON public.extras_configcontext USING btree (name varchar_pattern_ops);
--
-- Name: extras_configcontext_platforms_configcontext_id_2a516699; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_platforms_configcontext_id_2a516699 ON public.extras_configcontext_platforms USING btree (configcontext_id);
--
-- Name: extras_configcontext_platforms_platform_id_3fdfedc0; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_platforms_platform_id_3fdfedc0 ON public.extras_configcontext_platforms USING btree (platform_id);
--
-- Name: extras_configcontext_regions_configcontext_id_73003dbc; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_regions_configcontext_id_73003dbc ON public.extras_configcontext_regions USING btree (configcontext_id);
--
-- Name: extras_configcontext_regions_region_id_35c6ba9d; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_regions_region_id_35c6ba9d ON public.extras_configcontext_regions USING btree (region_id);
--
-- Name: extras_configcontext_roles_configcontext_id_59b67386; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_roles_configcontext_id_59b67386 ON public.extras_configcontext_roles USING btree (configcontext_id);
--
-- Name: extras_configcontext_roles_devicerole_id_d3a84813; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_roles_devicerole_id_d3a84813 ON public.extras_configcontext_roles USING btree (devicerole_id);
--
-- Name: extras_configcontext_sites_configcontext_id_8c54feb9; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_sites_configcontext_id_8c54feb9 ON public.extras_configcontext_sites USING btree (configcontext_id);
--
-- Name: extras_configcontext_sites_site_id_cbb76c96; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_sites_site_id_cbb76c96 ON public.extras_configcontext_sites USING btree (site_id);
--
-- Name: extras_configcontext_tenant_groups_configcontext_id_92f68345; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_tenant_groups_configcontext_id_92f68345 ON public.extras_configcontext_tenant_groups USING btree (configcontext_id);
--
-- Name: extras_configcontext_tenant_groups_tenantgroup_id_0909688d; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_tenant_groups_tenantgroup_id_0909688d ON public.extras_configcontext_tenant_groups USING btree (tenantgroup_id);
--
-- Name: extras_configcontext_tenants_configcontext_id_b53552a6; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_tenants_configcontext_id_b53552a6 ON public.extras_configcontext_tenants USING btree (configcontext_id);
--
-- Name: extras_configcontext_tenants_tenant_id_8d0aa28e; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_configcontext_tenants_tenant_id_8d0aa28e ON public.extras_configcontext_tenants USING btree (tenant_id);
--
-- Name: extras_customfield_name_2fe72707_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_customfield_name_2fe72707_like ON public.extras_customfield USING btree (name varchar_pattern_ops);
--
-- Name: extras_customfield_obj_type_contenttype_id_6890b714; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_customfield_obj_type_contenttype_id_6890b714 ON public.extras_customfield_obj_type USING btree (contenttype_id);
--
-- Name: extras_customfield_obj_type_customfield_id_82480f86; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_customfield_obj_type_customfield_id_82480f86 ON public.extras_customfield_obj_type USING btree (customfield_id);
--
-- Name: extras_customfieldchoice_field_id_35006739; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_customfieldchoice_field_id_35006739 ON public.extras_customfieldchoice USING btree (field_id);
--
-- Name: extras_customfieldvalue_field_id_1a461f0d; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_customfieldvalue_field_id_1a461f0d ON public.extras_customfieldvalue USING btree (field_id);
--
-- Name: extras_customfieldvalue_obj_type_id_b750b07b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_customfieldvalue_obj_type_id_b750b07b ON public.extras_customfieldvalue USING btree (obj_type_id);
--
-- Name: extras_exporttemplate_content_type_id_59737e21; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_exporttemplate_content_type_id_59737e21 ON public.extras_exporttemplate USING btree (content_type_id);
--
-- Name: extras_imageattachment_content_type_id_90e0643d; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_imageattachment_content_type_id_90e0643d ON public.extras_imageattachment USING btree (content_type_id);
--
-- Name: extras_objectchange_changed_object_type_id_b755bb60; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_objectchange_changed_object_type_id_b755bb60 ON public.extras_objectchange USING btree (changed_object_type_id);
--
-- Name: extras_objectchange_related_object_type_id_fe6e521f; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_objectchange_related_object_type_id_fe6e521f ON public.extras_objectchange USING btree (related_object_type_id);
--
-- Name: extras_objectchange_user_id_7fdf8186; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_objectchange_user_id_7fdf8186 ON public.extras_objectchange USING btree (user_id);
--
-- Name: extras_reportresult_report_3575dd21_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_reportresult_report_3575dd21_like ON public.extras_reportresult USING btree (report varchar_pattern_ops);
--
-- Name: extras_reportresult_user_id_0df55b95; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_reportresult_user_id_0df55b95 ON public.extras_reportresult USING btree (user_id);
--
-- Name: extras_topologymap_name_f377ebf1_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_topologymap_name_f377ebf1_like ON public.extras_topologymap USING btree (name varchar_pattern_ops);
--
-- Name: extras_topologymap_site_id_b56b3ceb; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_topologymap_site_id_b56b3ceb ON public.extras_topologymap USING btree (site_id);
--
-- Name: extras_topologymap_slug_9ba3d31e_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_topologymap_slug_9ba3d31e_like ON public.extras_topologymap USING btree (slug varchar_pattern_ops);
--
-- Name: extras_useraction_content_type_id_99f782d7; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_useraction_content_type_id_99f782d7 ON public.extras_useraction USING btree (content_type_id);
--
-- Name: extras_useraction_user_id_8aacec56; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_useraction_user_id_8aacec56 ON public.extras_useraction USING btree (user_id);
--
-- Name: extras_webhook_name_82cf60b5_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_webhook_name_82cf60b5_like ON public.extras_webhook USING btree (name varchar_pattern_ops);
--
-- Name: extras_webhook_obj_type_contenttype_id_85c7693b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_webhook_obj_type_contenttype_id_85c7693b ON public.extras_webhook_obj_type USING btree (contenttype_id);
--
-- Name: extras_webhook_obj_type_webhook_id_c7bed170; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX extras_webhook_obj_type_webhook_id_c7bed170 ON public.extras_webhook_obj_type USING btree (webhook_id);
--
-- Name: ipam_aggregate_rir_id_ef7a27bd; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_aggregate_rir_id_ef7a27bd ON public.ipam_aggregate USING btree (rir_id);
--
-- Name: ipam_ipaddress_interface_id_91e71d9d; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_ipaddress_interface_id_91e71d9d ON public.ipam_ipaddress USING btree (interface_id);
--
-- Name: ipam_ipaddress_tenant_id_ac55acfd; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_ipaddress_tenant_id_ac55acfd ON public.ipam_ipaddress USING btree (tenant_id);
--
-- Name: ipam_ipaddress_vrf_id_51fcc59b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_ipaddress_vrf_id_51fcc59b ON public.ipam_ipaddress USING btree (vrf_id);
--
-- Name: ipam_prefix_role_id_0a98d415; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_prefix_role_id_0a98d415 ON public.ipam_prefix USING btree (role_id);
--
-- Name: ipam_prefix_site_id_0b20df05; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_prefix_site_id_0b20df05 ON public.ipam_prefix USING btree (site_id);
--
-- Name: ipam_prefix_tenant_id_7ba1fcc4; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_prefix_tenant_id_7ba1fcc4 ON public.ipam_prefix USING btree (tenant_id);
--
-- Name: ipam_prefix_vlan_id_1db91bff; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_prefix_vlan_id_1db91bff ON public.ipam_prefix USING btree (vlan_id);
--
-- Name: ipam_prefix_vrf_id_34f78ed0; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_prefix_vrf_id_34f78ed0 ON public.ipam_prefix USING btree (vrf_id);
--
-- Name: ipam_rir_name_64a71982_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_rir_name_64a71982_like ON public.ipam_rir USING btree (name varchar_pattern_ops);
--
-- Name: ipam_rir_slug_ff1a369a_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_rir_slug_ff1a369a_like ON public.ipam_rir USING btree (slug varchar_pattern_ops);
--
-- Name: ipam_role_name_13784849_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_role_name_13784849_like ON public.ipam_role USING btree (name varchar_pattern_ops);
--
-- Name: ipam_role_slug_309ca14c_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_role_slug_309ca14c_like ON public.ipam_role USING btree (slug varchar_pattern_ops);
--
-- Name: ipam_service_device_id_b4d2bb9c; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_service_device_id_b4d2bb9c ON public.ipam_service USING btree (device_id);
--
-- Name: ipam_service_ipaddresses_ipaddress_id_b4138c6d; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_service_ipaddresses_ipaddress_id_b4138c6d ON public.ipam_service_ipaddresses USING btree (ipaddress_id);
--
-- Name: ipam_service_ipaddresses_service_id_ae26b9ab; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_service_ipaddresses_service_id_ae26b9ab ON public.ipam_service_ipaddresses USING btree (service_id);
--
-- Name: ipam_service_virtual_machine_id_e8b53562; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_service_virtual_machine_id_e8b53562 ON public.ipam_service USING btree (virtual_machine_id);
--
-- Name: ipam_vlan_group_id_88cbfa62; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_vlan_group_id_88cbfa62 ON public.ipam_vlan USING btree (group_id);
--
-- Name: ipam_vlan_role_id_f5015962; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_vlan_role_id_f5015962 ON public.ipam_vlan USING btree (role_id);
--
-- Name: ipam_vlan_site_id_a59334e3; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_vlan_site_id_a59334e3 ON public.ipam_vlan USING btree (site_id);
--
-- Name: ipam_vlan_tenant_id_71a8290d; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_vlan_tenant_id_71a8290d ON public.ipam_vlan USING btree (tenant_id);
--
-- Name: ipam_vlangroup_site_id_264f36f6; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_vlangroup_site_id_264f36f6 ON public.ipam_vlangroup USING btree (site_id);
--
-- Name: ipam_vlangroup_slug_40abcf6b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_vlangroup_slug_40abcf6b ON public.ipam_vlangroup USING btree (slug);
--
-- Name: ipam_vlangroup_slug_40abcf6b_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_vlangroup_slug_40abcf6b_like ON public.ipam_vlangroup USING btree (slug varchar_pattern_ops);
--
-- Name: ipam_vrf_rd_0ac1bde1_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_vrf_rd_0ac1bde1_like ON public.ipam_vrf USING btree (rd varchar_pattern_ops);
--
-- Name: ipam_vrf_tenant_id_498b0051; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX ipam_vrf_tenant_id_498b0051 ON public.ipam_vrf USING btree (tenant_id);
--
-- Name: secrets_secret_device_id_c7c13124; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX secrets_secret_device_id_c7c13124 ON public.secrets_secret USING btree (device_id);
--
-- Name: secrets_secret_role_id_39d9347f; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX secrets_secret_role_id_39d9347f ON public.secrets_secret USING btree (role_id);
--
-- Name: secrets_secretrole_groups_group_id_a687dd10; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX secrets_secretrole_groups_group_id_a687dd10 ON public.secrets_secretrole_groups USING btree (group_id);
--
-- Name: secrets_secretrole_groups_secretrole_id_3cf0338b; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX secrets_secretrole_groups_secretrole_id_3cf0338b ON public.secrets_secretrole_groups USING btree (secretrole_id);
--
-- Name: secrets_secretrole_name_7b6ee7a4_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX secrets_secretrole_name_7b6ee7a4_like ON public.secrets_secretrole USING btree (name varchar_pattern_ops);
--
-- Name: secrets_secretrole_slug_a06c885e_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX secrets_secretrole_slug_a06c885e_like ON public.secrets_secretrole USING btree (slug varchar_pattern_ops);
--
-- Name: secrets_secretrole_users_secretrole_id_d2eac298; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX secrets_secretrole_users_secretrole_id_d2eac298 ON public.secrets_secretrole_users USING btree (secretrole_id);
--
-- Name: secrets_secretrole_users_user_id_25be95ad; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX secrets_secretrole_users_user_id_25be95ad ON public.secrets_secretrole_users USING btree (user_id);
--
-- Name: taggit_tag_name_58eb2ed9_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX taggit_tag_name_58eb2ed9_like ON public.taggit_tag USING btree (name varchar_pattern_ops);
--
-- Name: taggit_tag_slug_6be58b2c_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX taggit_tag_slug_6be58b2c_like ON public.taggit_tag USING btree (slug varchar_pattern_ops);
--
-- Name: taggit_taggeditem_content_type_id_9957a03c; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX taggit_taggeditem_content_type_id_9957a03c ON public.taggit_taggeditem USING btree (content_type_id);
--
-- Name: taggit_taggeditem_content_type_id_object_id_196cc965_idx; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX taggit_taggeditem_content_type_id_object_id_196cc965_idx ON public.taggit_taggeditem USING btree (content_type_id, object_id);
--
-- Name: taggit_taggeditem_object_id_e2d7d1df; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX taggit_taggeditem_object_id_e2d7d1df ON public.taggit_taggeditem USING btree (object_id);
--
-- Name: taggit_taggeditem_tag_id_f4f5b767; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX taggit_taggeditem_tag_id_f4f5b767 ON public.taggit_taggeditem USING btree (tag_id);
--
-- Name: tenancy_tenant_group_id_7daef6f4; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX tenancy_tenant_group_id_7daef6f4 ON public.tenancy_tenant USING btree (group_id);
--
-- Name: tenancy_tenant_name_f6e5b2f5_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX tenancy_tenant_name_f6e5b2f5_like ON public.tenancy_tenant USING btree (name varchar_pattern_ops);
--
-- Name: tenancy_tenant_slug_0716575e_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX tenancy_tenant_slug_0716575e_like ON public.tenancy_tenant USING btree (slug varchar_pattern_ops);
--
-- Name: tenancy_tenantgroup_name_53363199_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX tenancy_tenantgroup_name_53363199_like ON public.tenancy_tenantgroup USING btree (name varchar_pattern_ops);
--
-- Name: tenancy_tenantgroup_slug_e2af1cb6_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX tenancy_tenantgroup_slug_e2af1cb6_like ON public.tenancy_tenantgroup USING btree (slug varchar_pattern_ops);
--
-- Name: users_token_key_820deccd_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX users_token_key_820deccd_like ON public.users_token USING btree (key varchar_pattern_ops);
--
-- Name: users_token_user_id_af964690; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX users_token_user_id_af964690 ON public.users_token USING btree (user_id);
--
-- Name: virtualization_cluster_group_id_de379828; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_cluster_group_id_de379828 ON public.virtualization_cluster USING btree (group_id);
--
-- Name: virtualization_cluster_name_1b59a61b_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_cluster_name_1b59a61b_like ON public.virtualization_cluster USING btree (name varchar_pattern_ops);
--
-- Name: virtualization_cluster_site_id_4d5af282; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_cluster_site_id_4d5af282 ON public.virtualization_cluster USING btree (site_id);
--
-- Name: virtualization_cluster_type_id_4efafb0a; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_cluster_type_id_4efafb0a ON public.virtualization_cluster USING btree (type_id);
--
-- Name: virtualization_clustergroup_name_4fcd26b4_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_clustergroup_name_4fcd26b4_like ON public.virtualization_clustergroup USING btree (name varchar_pattern_ops);
--
-- Name: virtualization_clustergroup_slug_57ca1d23_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_clustergroup_slug_57ca1d23_like ON public.virtualization_clustergroup USING btree (slug varchar_pattern_ops);
--
-- Name: virtualization_clustertype_name_ea854d3d_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_clustertype_name_ea854d3d_like ON public.virtualization_clustertype USING btree (name varchar_pattern_ops);
--
-- Name: virtualization_clustertype_slug_8ee4d0e0_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_clustertype_slug_8ee4d0e0_like ON public.virtualization_clustertype USING btree (slug varchar_pattern_ops);
--
-- Name: virtualization_virtualmachine_cluster_id_6c9f9047; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_virtualmachine_cluster_id_6c9f9047 ON public.virtualization_virtualmachine USING btree (cluster_id);
--
-- Name: virtualization_virtualmachine_name_266f6cdc_like; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_virtualmachine_name_266f6cdc_like ON public.virtualization_virtualmachine USING btree (name varchar_pattern_ops);
--
-- Name: virtualization_virtualmachine_platform_id_a6c5ccb2; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_virtualmachine_platform_id_a6c5ccb2 ON public.virtualization_virtualmachine USING btree (platform_id);
--
-- Name: virtualization_virtualmachine_role_id_0cc898f9; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_virtualmachine_role_id_0cc898f9 ON public.virtualization_virtualmachine USING btree (role_id);
--
-- Name: virtualization_virtualmachine_tenant_id_d00d1d77; Type: INDEX; Schema: public; Owner: netbox
--
CREATE INDEX virtualization_virtualmachine_tenant_id_d00d1d77 ON public.virtualization_virtualmachine USING btree (tenant_id);
--
-- Name: auth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_group_permissions auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_permission auth_permission_content_type_id_2f476e4b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_groups auth_user_groups_group_id_97559544_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_group_id_97559544_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_groups auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_user_id_6a12ed8b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_user_permissions auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: circuits_circuit circuits_circuit_provider_id_d9195418_fk_circuits_provider_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuit
ADD CONSTRAINT circuits_circuit_provider_id_d9195418_fk_circuits_provider_id FOREIGN KEY (provider_id) REFERENCES public.circuits_provider(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: circuits_circuit circuits_circuit_tenant_id_812508a5_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuit
ADD CONSTRAINT circuits_circuit_tenant_id_812508a5_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: circuits_circuit circuits_circuit_type_id_1b9f485a_fk_circuits_circuittype_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuit
ADD CONSTRAINT circuits_circuit_type_id_1b9f485a_fk_circuits_circuittype_id FOREIGN KEY (type_id) REFERENCES public.circuits_circuittype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: circuits_circuittermination circuits_circuitterm_circuit_id_257e87e7_fk_circuits_; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittermination
ADD CONSTRAINT circuits_circuitterm_circuit_id_257e87e7_fk_circuits_ FOREIGN KEY (circuit_id) REFERENCES public.circuits_circuit(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: circuits_circuittermination circuits_circuitterm_interface_id_a147755f_fk_dcim_inte; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittermination
ADD CONSTRAINT circuits_circuitterm_interface_id_a147755f_fk_dcim_inte FOREIGN KEY (interface_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: circuits_circuittermination circuits_circuittermination_site_id_e6fe5652_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.circuits_circuittermination
ADD CONSTRAINT circuits_circuittermination_site_id_e6fe5652_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_consoleport dcim_consoleport_cs_port_id_41f056d5_fk_dcim_cons; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleport
ADD CONSTRAINT dcim_consoleport_cs_port_id_41f056d5_fk_dcim_cons FOREIGN KEY (cs_port_id) REFERENCES public.dcim_consoleserverport(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_consoleport dcim_consoleport_device_id_f2d90d3c_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleport
ADD CONSTRAINT dcim_consoleport_device_id_f2d90d3c_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_consoleporttemplate dcim_consoleporttemp_device_type_id_075d4015_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleporttemplate
ADD CONSTRAINT dcim_consoleporttemp_device_type_id_075d4015_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_consoleserverporttemplate dcim_consoleserverpo_device_type_id_579bdc86_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleserverporttemplate
ADD CONSTRAINT dcim_consoleserverpo_device_type_id_579bdc86_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_consoleserverport dcim_consoleserverport_device_id_d9866581_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_consoleserverport
ADD CONSTRAINT dcim_consoleserverport_device_id_d9866581_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_cluster_id_cf852f78_fk_virtualization_cluster_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_cluster_id_cf852f78_fk_virtualization_cluster_id FOREIGN KEY (cluster_id) REFERENCES public.virtualization_cluster(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_device_role_id_682e8188_fk_dcim_devicerole_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_device_role_id_682e8188_fk_dcim_devicerole_id FOREIGN KEY (device_role_id) REFERENCES public.dcim_devicerole(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_device_type_id_d61b4086_fk_dcim_devicetype_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_device_type_id_d61b4086_fk_dcim_devicetype_id FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_platform_id_468138f1_fk_dcim_platform_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_platform_id_468138f1_fk_dcim_platform_id FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_primary_ip4_id_2ccd943a_fk_ipam_ipaddress_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_primary_ip4_id_2ccd943a_fk_ipam_ipaddress_id FOREIGN KEY (primary_ip4_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_primary_ip6_id_d180fe91_fk_ipam_ipaddress_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_primary_ip6_id_d180fe91_fk_ipam_ipaddress_id FOREIGN KEY (primary_ip6_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_rack_id_23bde71f_fk_dcim_rack_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_rack_id_23bde71f_fk_dcim_rack_id FOREIGN KEY (rack_id) REFERENCES public.dcim_rack(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_site_id_ff897cf6_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_site_id_ff897cf6_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_tenant_id_dcea7969_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_tenant_id_dcea7969_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_device dcim_device_virtual_chassis_id_aed51693_fk_dcim_virt; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_device
ADD CONSTRAINT dcim_device_virtual_chassis_id_aed51693_fk_dcim_virt FOREIGN KEY (virtual_chassis_id) REFERENCES public.dcim_virtualchassis(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_devicebay dcim_devicebay_device_id_0c8a1218_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebay
ADD CONSTRAINT dcim_devicebay_device_id_0c8a1218_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_devicebay dcim_devicebay_installed_device_id_04618112_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebay
ADD CONSTRAINT dcim_devicebay_installed_device_id_04618112_fk_dcim_device_id FOREIGN KEY (installed_device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_devicebaytemplate dcim_devicebaytempla_device_type_id_f4b24a29_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicebaytemplate
ADD CONSTRAINT dcim_devicebaytempla_device_type_id_f4b24a29_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_devicetype dcim_devicetype_manufacturer_id_a3e8029e_fk_dcim_manu; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_devicetype
ADD CONSTRAINT dcim_devicetype_manufacturer_id_a3e8029e_fk_dcim_manu FOREIGN KEY (manufacturer_id) REFERENCES public.dcim_manufacturer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_interface dcim_interface_device_id_359c6115_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface
ADD CONSTRAINT dcim_interface_device_id_359c6115_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_interface dcim_interface_lag_id_ea1a1d12_fk_dcim_interface_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface
ADD CONSTRAINT dcim_interface_lag_id_ea1a1d12_fk_dcim_interface_id FOREIGN KEY (lag_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_interface_tagged_vlans dcim_interface_tagge_interface_id_5870c9e9_fk_dcim_inte; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface_tagged_vlans
ADD CONSTRAINT dcim_interface_tagge_interface_id_5870c9e9_fk_dcim_inte FOREIGN KEY (interface_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_interface_tagged_vlans dcim_interface_tagged_vlans_vlan_id_e027005c_fk_ipam_vlan_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface_tagged_vlans
ADD CONSTRAINT dcim_interface_tagged_vlans_vlan_id_e027005c_fk_ipam_vlan_id FOREIGN KEY (vlan_id) REFERENCES public.ipam_vlan(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_interface dcim_interface_untagged_vlan_id_838dc7be_fk_ipam_vlan_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface
ADD CONSTRAINT dcim_interface_untagged_vlan_id_838dc7be_fk_ipam_vlan_id FOREIGN KEY (untagged_vlan_id) REFERENCES public.ipam_vlan(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_interface dcim_interface_virtual_machine_id_2afd2d50_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interface
ADD CONSTRAINT dcim_interface_virtual_machine_id_2afd2d50_fk_virtualiz FOREIGN KEY (virtual_machine_id) REFERENCES public.virtualization_virtualmachine(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_interfaceconnection dcim_interfaceconnec_interface_a_id_503f46c2_fk_dcim_inte; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfaceconnection
ADD CONSTRAINT dcim_interfaceconnec_interface_a_id_503f46c2_fk_dcim_inte FOREIGN KEY (interface_a_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_interfaceconnection dcim_interfaceconnec_interface_b_id_85faa104_fk_dcim_inte; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfaceconnection
ADD CONSTRAINT dcim_interfaceconnec_interface_b_id_85faa104_fk_dcim_inte FOREIGN KEY (interface_b_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_interfacetemplate dcim_interfacetempla_device_type_id_4bfcbfab_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_interfacetemplate
ADD CONSTRAINT dcim_interfacetempla_device_type_id_4bfcbfab_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_inventoryitem dcim_inventoryitem_device_id_033d83f8_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_inventoryitem
ADD CONSTRAINT dcim_inventoryitem_device_id_033d83f8_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_inventoryitem dcim_inventoryitem_manufacturer_id_dcd1b78a_fk_dcim_manu; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_inventoryitem
ADD CONSTRAINT dcim_inventoryitem_manufacturer_id_dcd1b78a_fk_dcim_manu FOREIGN KEY (manufacturer_id) REFERENCES public.dcim_manufacturer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_inventoryitem dcim_inventoryitem_parent_id_7ebcd457_fk_dcim_inventoryitem_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_inventoryitem
ADD CONSTRAINT dcim_inventoryitem_parent_id_7ebcd457_fk_dcim_inventoryitem_id FOREIGN KEY (parent_id) REFERENCES public.dcim_inventoryitem(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_platform dcim_platform_manufacturer_id_83f72d3d_fk_dcim_manufacturer_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_platform
ADD CONSTRAINT dcim_platform_manufacturer_id_83f72d3d_fk_dcim_manufacturer_id FOREIGN KEY (manufacturer_id) REFERENCES public.dcim_manufacturer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_poweroutlet dcim_poweroutlet_device_id_286351d7_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_poweroutlet
ADD CONSTRAINT dcim_poweroutlet_device_id_286351d7_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_poweroutlettemplate dcim_poweroutlettemp_device_type_id_26b2316c_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_poweroutlettemplate
ADD CONSTRAINT dcim_poweroutlettemp_device_type_id_26b2316c_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_powerport dcim_powerport_device_id_ef7185ae_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerport
ADD CONSTRAINT dcim_powerport_device_id_ef7185ae_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_powerport dcim_powerport_power_outlet_id_741276ef_fk_dcim_poweroutlet_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerport
ADD CONSTRAINT dcim_powerport_power_outlet_id_741276ef_fk_dcim_poweroutlet_id FOREIGN KEY (power_outlet_id) REFERENCES public.dcim_poweroutlet(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_powerporttemplate dcim_powerporttempla_device_type_id_1ddfbfcc_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_powerporttemplate
ADD CONSTRAINT dcim_powerporttempla_device_type_id_1ddfbfcc_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_rack dcim_rack_group_id_44e90ea9_fk_dcim_rackgroup_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rack
ADD CONSTRAINT dcim_rack_group_id_44e90ea9_fk_dcim_rackgroup_id FOREIGN KEY (group_id) REFERENCES public.dcim_rackgroup(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_rack dcim_rack_role_id_62d6919e_fk_dcim_rackrole_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rack
ADD CONSTRAINT dcim_rack_role_id_62d6919e_fk_dcim_rackrole_id FOREIGN KEY (role_id) REFERENCES public.dcim_rackrole(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_rack dcim_rack_site_id_403c7b3a_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rack
ADD CONSTRAINT dcim_rack_site_id_403c7b3a_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_rack dcim_rack_tenant_id_7cdf3725_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rack
ADD CONSTRAINT dcim_rack_tenant_id_7cdf3725_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_rackgroup dcim_rackgroup_site_id_13520e89_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackgroup
ADD CONSTRAINT dcim_rackgroup_site_id_13520e89_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_rackreservation dcim_rackreservation_rack_id_1ebbaa9b_fk_dcim_rack_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackreservation
ADD CONSTRAINT dcim_rackreservation_rack_id_1ebbaa9b_fk_dcim_rack_id FOREIGN KEY (rack_id) REFERENCES public.dcim_rack(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_rackreservation dcim_rackreservation_tenant_id_eb5e045f_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackreservation
ADD CONSTRAINT dcim_rackreservation_tenant_id_eb5e045f_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_rackreservation dcim_rackreservation_user_id_0785a527_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_rackreservation
ADD CONSTRAINT dcim_rackreservation_user_id_0785a527_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_region dcim_region_parent_id_2486f5d4_fk_dcim_region_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_region
ADD CONSTRAINT dcim_region_parent_id_2486f5d4_fk_dcim_region_id FOREIGN KEY (parent_id) REFERENCES public.dcim_region(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_site dcim_site_region_id_45210932_fk_dcim_region_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_site
ADD CONSTRAINT dcim_site_region_id_45210932_fk_dcim_region_id FOREIGN KEY (region_id) REFERENCES public.dcim_region(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_site dcim_site_tenant_id_15e7df63_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_site
ADD CONSTRAINT dcim_site_tenant_id_15e7df63_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: dcim_virtualchassis dcim_virtualchassis_master_id_ab54cfc6_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.dcim_virtualchassis
ADD CONSTRAINT dcim_virtualchassis_master_id_ab54cfc6_fk_dcim_device_id FOREIGN KEY (master_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: django_admin_log django_admin_log_content_type_id_c4bce8eb_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: django_admin_log django_admin_log_user_id_c564eba6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_platforms extras_configcontext_configcontext_id_2a516699_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_platforms
ADD CONSTRAINT extras_configcontext_configcontext_id_2a516699_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_roles extras_configcontext_configcontext_id_59b67386_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_roles
ADD CONSTRAINT extras_configcontext_configcontext_id_59b67386_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_regions extras_configcontext_configcontext_id_73003dbc_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_regions
ADD CONSTRAINT extras_configcontext_configcontext_id_73003dbc_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_sites extras_configcontext_configcontext_id_8c54feb9_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_sites
ADD CONSTRAINT extras_configcontext_configcontext_id_8c54feb9_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_tenant_groups extras_configcontext_configcontext_id_92f68345_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenant_groups
ADD CONSTRAINT extras_configcontext_configcontext_id_92f68345_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_tenants extras_configcontext_configcontext_id_b53552a6_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenants
ADD CONSTRAINT extras_configcontext_configcontext_id_b53552a6_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_roles extras_configcontext_devicerole_id_d3a84813_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_roles
ADD CONSTRAINT extras_configcontext_devicerole_id_d3a84813_fk_dcim_devi FOREIGN KEY (devicerole_id) REFERENCES public.dcim_devicerole(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_platforms extras_configcontext_platform_id_3fdfedc0_fk_dcim_plat; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_platforms
ADD CONSTRAINT extras_configcontext_platform_id_3fdfedc0_fk_dcim_plat FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_regions extras_configcontext_region_id_35c6ba9d_fk_dcim_regi; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_regions
ADD CONSTRAINT extras_configcontext_region_id_35c6ba9d_fk_dcim_regi FOREIGN KEY (region_id) REFERENCES public.dcim_region(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_sites extras_configcontext_sites_site_id_cbb76c96_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_sites
ADD CONSTRAINT extras_configcontext_sites_site_id_cbb76c96_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_tenants extras_configcontext_tenant_id_8d0aa28e_fk_tenancy_t; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenants
ADD CONSTRAINT extras_configcontext_tenant_id_8d0aa28e_fk_tenancy_t FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_configcontext_tenant_groups extras_configcontext_tenantgroup_id_0909688d_fk_tenancy_t; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_configcontext_tenant_groups
ADD CONSTRAINT extras_configcontext_tenantgroup_id_0909688d_fk_tenancy_t FOREIGN KEY (tenantgroup_id) REFERENCES public.tenancy_tenantgroup(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_customfield_obj_type extras_customfield_o_contenttype_id_6890b714_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfield_obj_type
ADD CONSTRAINT extras_customfield_o_contenttype_id_6890b714_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_customfield_obj_type extras_customfield_o_customfield_id_82480f86_fk_extras_cu; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfield_obj_type
ADD CONSTRAINT extras_customfield_o_customfield_id_82480f86_fk_extras_cu FOREIGN KEY (customfield_id) REFERENCES public.extras_customfield(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_customfieldchoice extras_customfieldch_field_id_35006739_fk_extras_cu; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfieldchoice
ADD CONSTRAINT extras_customfieldch_field_id_35006739_fk_extras_cu FOREIGN KEY (field_id) REFERENCES public.extras_customfield(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_customfieldvalue extras_customfieldva_field_id_1a461f0d_fk_extras_cu; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfieldvalue
ADD CONSTRAINT extras_customfieldva_field_id_1a461f0d_fk_extras_cu FOREIGN KEY (field_id) REFERENCES public.extras_customfield(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_customfieldvalue extras_customfieldva_obj_type_id_b750b07b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_customfieldvalue
ADD CONSTRAINT extras_customfieldva_obj_type_id_b750b07b_fk_django_co FOREIGN KEY (obj_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_exporttemplate extras_exporttemplat_content_type_id_59737e21_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_exporttemplate
ADD CONSTRAINT extras_exporttemplat_content_type_id_59737e21_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_imageattachment extras_imageattachme_content_type_id_90e0643d_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_imageattachment
ADD CONSTRAINT extras_imageattachme_content_type_id_90e0643d_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_objectchange extras_objectchange_changed_object_type__b755bb60_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_objectchange
ADD CONSTRAINT extras_objectchange_changed_object_type__b755bb60_fk_django_co FOREIGN KEY (changed_object_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_objectchange extras_objectchange_related_object_type__fe6e521f_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_objectchange
ADD CONSTRAINT extras_objectchange_related_object_type__fe6e521f_fk_django_co FOREIGN KEY (related_object_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_objectchange extras_objectchange_user_id_7fdf8186_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_objectchange
ADD CONSTRAINT extras_objectchange_user_id_7fdf8186_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_reportresult extras_reportresult_user_id_0df55b95_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_reportresult
ADD CONSTRAINT extras_reportresult_user_id_0df55b95_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_topologymap extras_topologymap_site_id_b56b3ceb_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_topologymap
ADD CONSTRAINT extras_topologymap_site_id_b56b3ceb_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_useraction extras_useraction_content_type_id_99f782d7_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_useraction
ADD CONSTRAINT extras_useraction_content_type_id_99f782d7_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_useraction extras_useraction_user_id_8aacec56_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_useraction
ADD CONSTRAINT extras_useraction_user_id_8aacec56_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_webhook_obj_type extras_webhook_obj_t_contenttype_id_85c7693b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_webhook_obj_type
ADD CONSTRAINT extras_webhook_obj_t_contenttype_id_85c7693b_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: extras_webhook_obj_type extras_webhook_obj_t_webhook_id_c7bed170_fk_extras_we; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.extras_webhook_obj_type
ADD CONSTRAINT extras_webhook_obj_t_webhook_id_c7bed170_fk_extras_we FOREIGN KEY (webhook_id) REFERENCES public.extras_webhook(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_aggregate ipam_aggregate_rir_id_ef7a27bd_fk_ipam_rir_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_aggregate
ADD CONSTRAINT ipam_aggregate_rir_id_ef7a27bd_fk_ipam_rir_id FOREIGN KEY (rir_id) REFERENCES public.ipam_rir(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_ipaddress ipam_ipaddress_interface_id_91e71d9d_fk_dcim_interface_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_ipaddress
ADD CONSTRAINT ipam_ipaddress_interface_id_91e71d9d_fk_dcim_interface_id FOREIGN KEY (interface_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_ipaddress ipam_ipaddress_nat_inside_id_a45fb7c5_fk_ipam_ipaddress_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_ipaddress
ADD CONSTRAINT ipam_ipaddress_nat_inside_id_a45fb7c5_fk_ipam_ipaddress_id FOREIGN KEY (nat_inside_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_ipaddress ipam_ipaddress_tenant_id_ac55acfd_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_ipaddress
ADD CONSTRAINT ipam_ipaddress_tenant_id_ac55acfd_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_ipaddress ipam_ipaddress_vrf_id_51fcc59b_fk_ipam_vrf_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_ipaddress
ADD CONSTRAINT ipam_ipaddress_vrf_id_51fcc59b_fk_ipam_vrf_id FOREIGN KEY (vrf_id) REFERENCES public.ipam_vrf(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_prefix ipam_prefix_role_id_0a98d415_fk_ipam_role_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_prefix
ADD CONSTRAINT ipam_prefix_role_id_0a98d415_fk_ipam_role_id FOREIGN KEY (role_id) REFERENCES public.ipam_role(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_prefix ipam_prefix_site_id_0b20df05_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_prefix
ADD CONSTRAINT ipam_prefix_site_id_0b20df05_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_prefix ipam_prefix_tenant_id_7ba1fcc4_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_prefix
ADD CONSTRAINT ipam_prefix_tenant_id_7ba1fcc4_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_prefix ipam_prefix_vlan_id_1db91bff_fk_ipam_vlan_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_prefix
ADD CONSTRAINT ipam_prefix_vlan_id_1db91bff_fk_ipam_vlan_id FOREIGN KEY (vlan_id) REFERENCES public.ipam_vlan(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_prefix ipam_prefix_vrf_id_34f78ed0_fk_ipam_vrf_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_prefix
ADD CONSTRAINT ipam_prefix_vrf_id_34f78ed0_fk_ipam_vrf_id FOREIGN KEY (vrf_id) REFERENCES public.ipam_vrf(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_service ipam_service_device_id_b4d2bb9c_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_service
ADD CONSTRAINT ipam_service_device_id_b4d2bb9c_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_service_ipaddresses ipam_service_ipaddre_ipaddress_id_b4138c6d_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_service_ipaddresses
ADD CONSTRAINT ipam_service_ipaddre_ipaddress_id_b4138c6d_fk_ipam_ipad FOREIGN KEY (ipaddress_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_service_ipaddresses ipam_service_ipaddresses_service_id_ae26b9ab_fk_ipam_service_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_service_ipaddresses
ADD CONSTRAINT ipam_service_ipaddresses_service_id_ae26b9ab_fk_ipam_service_id FOREIGN KEY (service_id) REFERENCES public.ipam_service(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_service ipam_service_virtual_machine_id_e8b53562_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_service
ADD CONSTRAINT ipam_service_virtual_machine_id_e8b53562_fk_virtualiz FOREIGN KEY (virtual_machine_id) REFERENCES public.virtualization_virtualmachine(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_vlan ipam_vlan_group_id_88cbfa62_fk_ipam_vlangroup_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlan
ADD CONSTRAINT ipam_vlan_group_id_88cbfa62_fk_ipam_vlangroup_id FOREIGN KEY (group_id) REFERENCES public.ipam_vlangroup(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_vlan ipam_vlan_role_id_f5015962_fk_ipam_role_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlan
ADD CONSTRAINT ipam_vlan_role_id_f5015962_fk_ipam_role_id FOREIGN KEY (role_id) REFERENCES public.ipam_role(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_vlan ipam_vlan_site_id_a59334e3_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlan
ADD CONSTRAINT ipam_vlan_site_id_a59334e3_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_vlan ipam_vlan_tenant_id_71a8290d_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlan
ADD CONSTRAINT ipam_vlan_tenant_id_71a8290d_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_vlangroup ipam_vlangroup_site_id_264f36f6_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vlangroup
ADD CONSTRAINT ipam_vlangroup_site_id_264f36f6_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: ipam_vrf ipam_vrf_tenant_id_498b0051_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.ipam_vrf
ADD CONSTRAINT ipam_vrf_tenant_id_498b0051_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: secrets_secret secrets_secret_device_id_c7c13124_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secret
ADD CONSTRAINT secrets_secret_device_id_c7c13124_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: secrets_secret secrets_secret_role_id_39d9347f_fk_secrets_secretrole_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secret
ADD CONSTRAINT secrets_secret_role_id_39d9347f_fk_secrets_secretrole_id FOREIGN KEY (role_id) REFERENCES public.secrets_secretrole(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: secrets_secretrole_groups secrets_secretrole_g_secretrole_id_3cf0338b_fk_secrets_s; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_groups
ADD CONSTRAINT secrets_secretrole_g_secretrole_id_3cf0338b_fk_secrets_s FOREIGN KEY (secretrole_id) REFERENCES public.secrets_secretrole(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: secrets_secretrole_groups secrets_secretrole_groups_group_id_a687dd10_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_groups
ADD CONSTRAINT secrets_secretrole_groups_group_id_a687dd10_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: secrets_secretrole_users secrets_secretrole_u_secretrole_id_d2eac298_fk_secrets_s; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_users
ADD CONSTRAINT secrets_secretrole_u_secretrole_id_d2eac298_fk_secrets_s FOREIGN KEY (secretrole_id) REFERENCES public.secrets_secretrole(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: secrets_secretrole_users secrets_secretrole_users_user_id_25be95ad_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_secretrole_users
ADD CONSTRAINT secrets_secretrole_users_user_id_25be95ad_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: secrets_sessionkey secrets_sessionkey_userkey_id_3ca6176b_fk_secrets_userkey_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_sessionkey
ADD CONSTRAINT secrets_sessionkey_userkey_id_3ca6176b_fk_secrets_userkey_id FOREIGN KEY (userkey_id) REFERENCES public.secrets_userkey(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: secrets_userkey secrets_userkey_user_id_13ada46b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.secrets_userkey
ADD CONSTRAINT secrets_userkey_user_id_13ada46b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: taggit_taggeditem taggit_taggeditem_content_type_id_9957a03c_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.taggit_taggeditem
ADD CONSTRAINT taggit_taggeditem_content_type_id_9957a03c_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: taggit_taggeditem taggit_taggeditem_tag_id_f4f5b767_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.taggit_taggeditem
ADD CONSTRAINT taggit_taggeditem_tag_id_f4f5b767_fk_taggit_tag_id FOREIGN KEY (tag_id) REFERENCES public.taggit_tag(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: tenancy_tenant tenancy_tenant_group_id_7daef6f4_fk_tenancy_tenantgroup_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.tenancy_tenant
ADD CONSTRAINT tenancy_tenant_group_id_7daef6f4_fk_tenancy_tenantgroup_id FOREIGN KEY (group_id) REFERENCES public.tenancy_tenantgroup(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: users_token users_token_user_id_af964690_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.users_token
ADD CONSTRAINT users_token_user_id_af964690_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: virtualization_cluster virtualization_clust_group_id_de379828_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_cluster
ADD CONSTRAINT virtualization_clust_group_id_de379828_fk_virtualiz FOREIGN KEY (group_id) REFERENCES public.virtualization_clustergroup(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: virtualization_cluster virtualization_clust_type_id_4efafb0a_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_cluster
ADD CONSTRAINT virtualization_clust_type_id_4efafb0a_fk_virtualiz FOREIGN KEY (type_id) REFERENCES public.virtualization_clustertype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: virtualization_cluster virtualization_cluster_site_id_4d5af282_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_cluster
ADD CONSTRAINT virtualization_cluster_site_id_4d5af282_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: virtualization_virtualmachine virtualization_virtu_cluster_id_6c9f9047_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtu_cluster_id_6c9f9047_fk_virtualiz FOREIGN KEY (cluster_id) REFERENCES public.virtualization_cluster(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: virtualization_virtualmachine virtualization_virtu_platform_id_a6c5ccb2_fk_dcim_plat; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtu_platform_id_a6c5ccb2_fk_dcim_plat FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: virtualization_virtualmachine virtualization_virtu_primary_ip4_id_942e42ae_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtu_primary_ip4_id_942e42ae_fk_ipam_ipad FOREIGN KEY (primary_ip4_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: virtualization_virtualmachine virtualization_virtu_primary_ip6_id_b7904e73_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtu_primary_ip6_id_b7904e73_fk_ipam_ipad FOREIGN KEY (primary_ip6_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: virtualization_virtualmachine virtualization_virtu_role_id_0cc898f9_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtu_role_id_0cc898f9_fk_dcim_devi FOREIGN KEY (role_id) REFERENCES public.dcim_devicerole(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: virtualization_virtualmachine virtualization_virtu_tenant_id_d00d1d77_fk_tenancy_t; Type: FK CONSTRAINT; Schema: public; Owner: netbox
--
ALTER TABLE ONLY public.virtualization_virtualmachine
ADD CONSTRAINT virtualization_virtu_tenant_id_d00d1d77_fk_tenancy_t FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres
--
GRANT ALL ON SCHEMA public TO PUBLIC;
--
-- PostgreSQL database dump complete
--