diff --git a/.docker/drupal/dumps/drupal.sql.gz b/.docker/drupal/dumps/drupal.sql.gz index 611c4c76b..e09a17953 100644 Binary files a/.docker/drupal/dumps/drupal.sql.gz and b/.docker/drupal/dumps/drupal.sql.gz differ diff --git a/.docker/oidc-server-mock/cert/docker.pfx b/.docker/oidc-server-mock/cert/docker.pfx new file mode 100644 index 000000000..36f62588e Binary files /dev/null and b/.docker/oidc-server-mock/cert/docker.pfx differ diff --git a/.docker/pretix/dumps/pretix.sql b/.docker/pretix/dumps/pretix.sql new file mode 100644 index 000000000..6a01a87eb --- /dev/null +++ b/.docker/pretix/dumps/pretix.sql @@ -0,0 +1,14934 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 17.2 (Debian 17.2-1.pgdg120+1) +-- Dumped by pg_dump version 17.2 (Debian 17.2-1.pgdg120+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET transaction_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 xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: public; Type: SCHEMA; Schema: -; Owner: pretix +-- + +-- *not* creating schema, since initdb creates it + + +ALTER SCHEMA public OWNER TO pretix; + +-- +-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: pretix +-- + +COMMENT ON SCHEMA public IS ''; + + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +-- +-- Name: auth_group; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.auth_group ( + id integer NOT NULL, + name character varying(150) NOT NULL +); + + +ALTER TABLE public.auth_group OWNER TO pretix; + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.auth_group_permissions ( + id bigint NOT NULL, + group_id integer NOT NULL, + permission_id integer NOT NULL +); + + +ALTER TABLE public.auth_group_permissions OWNER TO pretix; + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_group_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_permission; Type: TABLE; Schema: public; Owner: pretix +-- + +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 pretix; + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_permission_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: autocheckin_autocheckinrule; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.autocheckin_autocheckinrule ( + id bigint NOT NULL, + mode character varying(100) NOT NULL, + all_sales_channels boolean NOT NULL, + all_products boolean NOT NULL, + all_payment_methods boolean NOT NULL, + limit_payment_methods text, + event_id bigint NOT NULL, + list_id bigint +); + + +ALTER TABLE public.autocheckin_autocheckinrule OWNER TO pretix; + +-- +-- Name: autocheckin_autocheckinrule_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.autocheckin_autocheckinrule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.autocheckin_autocheckinrule_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: autocheckin_autocheckinrule_limit_products; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.autocheckin_autocheckinrule_limit_products ( + id bigint NOT NULL, + autocheckinrule_id bigint NOT NULL, + item_id bigint NOT NULL +); + + +ALTER TABLE public.autocheckin_autocheckinrule_limit_products OWNER TO pretix; + +-- +-- Name: autocheckin_autocheckinrule_limit_products_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.autocheckin_autocheckinrule_limit_products ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.autocheckin_autocheckinrule_limit_products_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: autocheckin_autocheckinrule_limit_sales_channels; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.autocheckin_autocheckinrule_limit_sales_channels ( + id bigint NOT NULL, + autocheckinrule_id bigint NOT NULL, + saleschannel_id bigint NOT NULL +); + + +ALTER TABLE public.autocheckin_autocheckinrule_limit_sales_channels OWNER TO pretix; + +-- +-- Name: autocheckin_autocheckinrule_limit_sales_channels_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.autocheckin_autocheckinrule_limit_sales_channels ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.autocheckin_autocheckinrule_limit_sales_channels_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: autocheckin_autocheckinrule_limit_variations; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.autocheckin_autocheckinrule_limit_variations ( + id bigint NOT NULL, + autocheckinrule_id bigint NOT NULL, + itemvariation_id bigint NOT NULL +); + + +ALTER TABLE public.autocheckin_autocheckinrule_limit_variations OWNER TO pretix; + +-- +-- Name: autocheckin_autocheckinrule_limit_variations_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.autocheckin_autocheckinrule_limit_variations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.autocheckin_autocheckinrule_limit_variations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: badges_badgeitem; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.badges_badgeitem ( + id bigint NOT NULL, + item_id bigint, + layout_id bigint +); + + +ALTER TABLE public.badges_badgeitem OWNER TO pretix; + +-- +-- Name: badges_badgeitem_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.badges_badgeitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.badges_badgeitem_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: badges_badgelayout; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.badges_badgelayout ( + id bigint NOT NULL, + "default" boolean NOT NULL, + name character varying(190) NOT NULL, + layout text NOT NULL, + background character varying(255), + event_id bigint NOT NULL +); + + +ALTER TABLE public.badges_badgelayout OWNER TO pretix; + +-- +-- Name: badges_badgelayout_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.badges_badgelayout ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.badges_badgelayout_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: banktransfer_bankimportjob; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.banktransfer_bankimportjob ( + id bigint NOT NULL, + created timestamp with time zone NOT NULL, + state character varying(32) NOT NULL, + event_id bigint, + organizer_id bigint, + currency character varying(10) +); + + +ALTER TABLE public.banktransfer_bankimportjob OWNER TO pretix; + +-- +-- Name: banktransfer_bankimportjob_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.banktransfer_bankimportjob ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.banktransfer_bankimportjob_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: banktransfer_banktransaction; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.banktransfer_banktransaction ( + id bigint NOT NULL, + state character varying(32) NOT NULL, + message text NOT NULL, + checksum character varying(190) NOT NULL, + payer text NOT NULL, + reference text NOT NULL, + amount numeric(13,2) NOT NULL, + date character varying(50) NOT NULL, + event_id bigint, + import_job_id bigint NOT NULL, + order_id bigint, + comment text NOT NULL, + organizer_id bigint, + bic character varying(250) NOT NULL, + date_parsed date, + iban character varying(250) NOT NULL, + currency character varying(10), + external_id character varying(190) +); + + +ALTER TABLE public.banktransfer_banktransaction OWNER TO pretix; + +-- +-- Name: banktransfer_banktransaction_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.banktransfer_banktransaction ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.banktransfer_banktransaction_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: banktransfer_refundexport; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.banktransfer_refundexport ( + id bigint NOT NULL, + datetime timestamp with time zone NOT NULL, + testmode boolean NOT NULL, + rows text NOT NULL, + event_id bigint, + organizer_id bigint, + downloaded boolean NOT NULL, + currency character varying(10) +); + + +ALTER TABLE public.banktransfer_refundexport OWNER TO pretix; + +-- +-- Name: banktransfer_refundexport_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.banktransfer_refundexport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.banktransfer_refundexport_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: django_content_type; Type: TABLE; Schema: public; Owner: pretix +-- + +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 pretix; + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.django_content_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: django_migrations; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.django_migrations ( + id bigint 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 pretix; + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.django_migrations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: django_session; Type: TABLE; Schema: public; Owner: pretix +-- + +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 pretix; + +-- +-- Name: otp_static_staticdevice; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.otp_static_staticdevice ( + id integer NOT NULL, + name character varying(64) NOT NULL, + confirmed boolean NOT NULL, + user_id bigint NOT NULL, + throttling_failure_count integer NOT NULL, + throttling_failure_timestamp timestamp with time zone, + created_at timestamp with time zone, + last_used_at timestamp with time zone, + CONSTRAINT otp_static_staticdevice_throttling_failure_count_check CHECK ((throttling_failure_count >= 0)) +); + + +ALTER TABLE public.otp_static_staticdevice OWNER TO pretix; + +-- +-- Name: otp_static_staticdevice_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.otp_static_staticdevice ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.otp_static_staticdevice_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: otp_static_statictoken; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.otp_static_statictoken ( + id integer NOT NULL, + token character varying(16) NOT NULL, + device_id integer NOT NULL +); + + +ALTER TABLE public.otp_static_statictoken OWNER TO pretix; + +-- +-- Name: otp_static_statictoken_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.otp_static_statictoken ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.otp_static_statictoken_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: otp_totp_totpdevice; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.otp_totp_totpdevice ( + id integer NOT NULL, + name character varying(64) NOT NULL, + confirmed boolean NOT NULL, + key character varying(80) NOT NULL, + step smallint NOT NULL, + t0 bigint NOT NULL, + digits smallint NOT NULL, + tolerance smallint NOT NULL, + drift smallint NOT NULL, + last_t bigint NOT NULL, + user_id bigint NOT NULL, + throttling_failure_count integer NOT NULL, + throttling_failure_timestamp timestamp with time zone, + created_at timestamp with time zone, + last_used_at timestamp with time zone, + CONSTRAINT otp_totp_totpdevice_digits_check CHECK ((digits >= 0)), + CONSTRAINT otp_totp_totpdevice_step_check CHECK ((step >= 0)), + CONSTRAINT otp_totp_totpdevice_throttling_failure_count_check CHECK ((throttling_failure_count >= 0)), + CONSTRAINT otp_totp_totpdevice_tolerance_check CHECK ((tolerance >= 0)) +); + + +ALTER TABLE public.otp_totp_totpdevice OWNER TO pretix; + +-- +-- Name: otp_totp_totpdevice_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.otp_totp_totpdevice ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.otp_totp_totpdevice_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: paypal_referencedpaypalobject; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.paypal_referencedpaypalobject ( + id bigint NOT NULL, + reference character varying(190) NOT NULL, + order_id bigint NOT NULL, + payment_id bigint +); + + +ALTER TABLE public.paypal_referencedpaypalobject OWNER TO pretix; + +-- +-- Name: paypal_referencedpaypalobject_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.paypal_referencedpaypalobject ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.paypal_referencedpaypalobject_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_apicall; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_apicall ( + id bigint NOT NULL, + idempotency_key character varying(190) NOT NULL, + auth_hash character varying(190) NOT NULL, + created timestamp with time zone NOT NULL, + locked timestamp with time zone, + request_method character varying(20) NOT NULL, + request_path character varying(255) NOT NULL, + response_code integer NOT NULL, + response_headers text NOT NULL, + response_body bytea NOT NULL, + CONSTRAINT pretixapi_apicall_response_code_check CHECK ((response_code >= 0)) +); + + +ALTER TABLE public.pretixapi_apicall OWNER TO pretix; + +-- +-- Name: pretixapi_apicall_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_apicall ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_apicall_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_oauthaccesstoken; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_oauthaccesstoken ( + id bigint NOT NULL, + token character varying(255) NOT NULL, + expires timestamp with time zone NOT NULL, + scope text NOT NULL, + created timestamp with time zone NOT NULL, + updated timestamp with time zone NOT NULL, + application_id bigint, + source_refresh_token_id bigint, + user_id bigint, + id_token_id bigint +); + + +ALTER TABLE public.pretixapi_oauthaccesstoken OWNER TO pretix; + +-- +-- Name: pretixapi_oauthaccesstoken_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_oauthaccesstoken ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_oauthaccesstoken_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_oauthaccesstoken_organizers; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_oauthaccesstoken_organizers ( + id bigint NOT NULL, + oauthaccesstoken_id bigint NOT NULL, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixapi_oauthaccesstoken_organizers OWNER TO pretix; + +-- +-- Name: pretixapi_oauthaccesstoken_organizers_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_oauthaccesstoken_organizers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_oauthaccesstoken_organizers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_oauthapplication; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_oauthapplication ( + id bigint NOT NULL, + client_type character varying(32) NOT NULL, + authorization_grant_type character varying(32) NOT NULL, + skip_authorization boolean NOT NULL, + created timestamp with time zone NOT NULL, + updated timestamp with time zone NOT NULL, + name character varying(255) NOT NULL, + redirect_uris text NOT NULL, + client_id character varying(100) NOT NULL, + client_secret character varying(255) NOT NULL, + active boolean NOT NULL, + user_id bigint, + algorithm character varying(5) NOT NULL, + post_logout_redirect_uris text NOT NULL +); + + +ALTER TABLE public.pretixapi_oauthapplication OWNER TO pretix; + +-- +-- Name: pretixapi_oauthapplication_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_oauthapplication ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_oauthapplication_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_oauthgrant; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_oauthgrant ( + id bigint NOT NULL, + code character varying(255) NOT NULL, + expires timestamp with time zone NOT NULL, + redirect_uri character varying(2500) NOT NULL, + scope text NOT NULL, + created timestamp with time zone NOT NULL, + updated timestamp with time zone NOT NULL, + application_id bigint NOT NULL, + user_id bigint NOT NULL, + claims text NOT NULL, + code_challenge character varying(128) NOT NULL, + code_challenge_method character varying(10) NOT NULL, + nonce character varying(255) NOT NULL +); + + +ALTER TABLE public.pretixapi_oauthgrant OWNER TO pretix; + +-- +-- Name: pretixapi_oauthgrant_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_oauthgrant ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_oauthgrant_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_oauthgrant_organizers; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_oauthgrant_organizers ( + id bigint NOT NULL, + oauthgrant_id bigint NOT NULL, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixapi_oauthgrant_organizers OWNER TO pretix; + +-- +-- Name: pretixapi_oauthgrant_organizers_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_oauthgrant_organizers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_oauthgrant_organizers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_oauthidtoken; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_oauthidtoken ( + id bigint NOT NULL, + jti uuid NOT NULL, + expires timestamp with time zone NOT NULL, + scope text NOT NULL, + created timestamp with time zone NOT NULL, + updated timestamp with time zone NOT NULL, + application_id bigint NOT NULL, + user_id bigint +); + + +ALTER TABLE public.pretixapi_oauthidtoken OWNER TO pretix; + +-- +-- Name: pretixapi_oauthidtoken_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_oauthidtoken ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_oauthidtoken_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_oauthidtoken_organizers; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_oauthidtoken_organizers ( + id bigint NOT NULL, + oauthidtoken_id bigint NOT NULL, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixapi_oauthidtoken_organizers OWNER TO pretix; + +-- +-- Name: pretixapi_oauthidtoken_organizers_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_oauthidtoken_organizers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_oauthidtoken_organizers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_oauthrefreshtoken; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_oauthrefreshtoken ( + id bigint NOT NULL, + token character varying(255) NOT NULL, + created timestamp with time zone NOT NULL, + updated timestamp with time zone NOT NULL, + revoked timestamp with time zone, + access_token_id bigint, + application_id bigint NOT NULL, + user_id bigint NOT NULL +); + + +ALTER TABLE public.pretixapi_oauthrefreshtoken OWNER TO pretix; + +-- +-- Name: pretixapi_oauthrefreshtoken_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_oauthrefreshtoken ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_oauthrefreshtoken_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_webhook; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_webhook ( + id bigint NOT NULL, + enabled boolean NOT NULL, + target_url character varying(255) NOT NULL, + all_events boolean NOT NULL, + organizer_id bigint NOT NULL, + comment character varying(255) +); + + +ALTER TABLE public.pretixapi_webhook OWNER TO pretix; + +-- +-- Name: pretixapi_webhook_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_webhook ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_webhook_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_webhook_limit_events; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_webhook_limit_events ( + id bigint NOT NULL, + webhook_id bigint NOT NULL, + event_id bigint NOT NULL +); + + +ALTER TABLE public.pretixapi_webhook_limit_events OWNER TO pretix; + +-- +-- Name: pretixapi_webhook_limit_events_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_webhook_limit_events ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_webhook_limit_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_webhookcall; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_webhookcall ( + id bigint NOT NULL, + datetime timestamp with time zone NOT NULL, + target_url character varying(255) NOT NULL, + is_retry boolean NOT NULL, + execution_time double precision, + return_code integer NOT NULL, + payload text NOT NULL, + response_body text NOT NULL, + webhook_id bigint NOT NULL, + success boolean NOT NULL, + action_type character varying(255) NOT NULL, + CONSTRAINT pretixapi_webhookcall_return_code_check CHECK ((return_code >= 0)) +); + + +ALTER TABLE public.pretixapi_webhookcall OWNER TO pretix; + +-- +-- Name: pretixapi_webhookcall_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_webhookcall ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_webhookcall_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_webhookcallretry; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_webhookcallretry ( + id bigint NOT NULL, + retry_not_before timestamp with time zone NOT NULL, + retry_count integer NOT NULL, + action_type character varying(255) NOT NULL, + logentry_id bigint NOT NULL, + webhook_id bigint NOT NULL, + CONSTRAINT pretixapi_webhookcallretry_retry_count_check CHECK ((retry_count >= 0)) +); + + +ALTER TABLE public.pretixapi_webhookcallretry OWNER TO pretix; + +-- +-- Name: pretixapi_webhookcallretry_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_webhookcallretry ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_webhookcallretry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixapi_webhookeventlistener; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixapi_webhookeventlistener ( + id bigint NOT NULL, + action_type character varying(255) NOT NULL, + webhook_id bigint NOT NULL +); + + +ALTER TABLE public.pretixapi_webhookeventlistener OWNER TO pretix; + +-- +-- Name: pretixapi_webhookeventlistener_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixapi_webhookeventlistener ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixapi_webhookeventlistener_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_attendeeprofile; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_attendeeprofile ( + id bigint NOT NULL, + attendee_name_cached character varying(255), + attendee_name_parts jsonb NOT NULL, + attendee_email character varying(254), + company character varying(255), + street text, + zipcode character varying(30), + city character varying(255), + country character varying(2), + state character varying(255), + answers jsonb NOT NULL, + customer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_attendeeprofile OWNER TO pretix; + +-- +-- Name: pretixbase_attendeeprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_attendeeprofile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_attendeeprofile_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_blockedticketsecret; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_blockedticketsecret ( + id bigint NOT NULL, + secret text NOT NULL, + blocked boolean NOT NULL, + updated timestamp with time zone NOT NULL, + event_id bigint NOT NULL, + position_id bigint +); + + +ALTER TABLE public.pretixbase_blockedticketsecret OWNER TO pretix; + +-- +-- Name: pretixbase_blockedticketsecret_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_blockedticketsecret ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_blockedticketsecret_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_cachedcombinedticket; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_cachedcombinedticket ( + id bigint NOT NULL, + provider character varying(255) NOT NULL, + type character varying(255) NOT NULL, + extension character varying(255) NOT NULL, + file character varying(255), + order_id bigint NOT NULL, + created timestamp with time zone NOT NULL +); + + +ALTER TABLE public.pretixbase_cachedcombinedticket OWNER TO pretix; + +-- +-- Name: pretixbase_cachedcombinedticket_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_cachedcombinedticket ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_cachedcombinedticket_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_cachedfile; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_cachedfile ( + id uuid NOT NULL, + expires timestamp with time zone, + date timestamp with time zone, + filename character varying(255) NOT NULL, + type character varying(255) NOT NULL, + file character varying(255), + session_key text, + web_download boolean NOT NULL +); + + +ALTER TABLE public.pretixbase_cachedfile OWNER TO pretix; + +-- +-- Name: pretixbase_cachedticket; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_cachedticket ( + id bigint NOT NULL, + provider character varying(255) NOT NULL, + order_position_id bigint NOT NULL, + extension character varying(255) NOT NULL, + file character varying(255), + type character varying(255) NOT NULL, + created timestamp with time zone NOT NULL +); + + +ALTER TABLE public.pretixbase_cachedticket OWNER TO pretix; + +-- +-- Name: pretixbase_cachedticket_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_cachedticket ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_cachedticket_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_cancellationrequest; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_cancellationrequest ( + id bigint NOT NULL, + created timestamp with time zone NOT NULL, + cancellation_fee numeric(13,2) NOT NULL, + refund_as_giftcard boolean NOT NULL, + order_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_cancellationrequest OWNER TO pretix; + +-- +-- Name: pretixbase_cancellationrequest_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_cancellationrequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_cancellationrequest_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_cartposition; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_cartposition ( + id bigint NOT NULL, + price numeric(13,2) NOT NULL, + attendee_name_cached character varying(255), + cart_id character varying(255), + datetime timestamp with time zone NOT NULL, + expires timestamp with time zone NOT NULL, + event_id bigint NOT NULL, + item_id bigint NOT NULL, + variation_id bigint, + voucher_id bigint, + attendee_email character varying(254), + addon_to_id bigint, + meta_info text, + subevent_id bigint, + attendee_name_parts jsonb NOT NULL, + is_bundled boolean NOT NULL, + seat_id bigint, + city character varying(255), + company character varying(255), + country character varying(2), + state character varying(255), + street text, + zipcode character varying(30), + used_membership_id bigint, + custom_price_input numeric(13,2), + custom_price_input_is_net boolean NOT NULL, + line_price_gross numeric(13,2), + listed_price numeric(13,2), + price_after_voucher numeric(13,2), + tax_rate numeric(7,2) NOT NULL, + discount_id bigint, + requested_valid_from timestamp with time zone +); + + +ALTER TABLE public.pretixbase_cartposition OWNER TO pretix; + +-- +-- Name: pretixbase_cartposition_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_cartposition ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_cartposition_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_checkin; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_checkin ( + id bigint NOT NULL, + datetime timestamp with time zone NOT NULL, + position_id bigint, + nonce character varying(190), + list_id bigint NOT NULL, + auto_checked_in boolean NOT NULL, + device_id bigint, + forced boolean NOT NULL, + type character varying(100) NOT NULL, + gate_id bigint, + created timestamp with time zone, + error_explanation text, + error_reason character varying(100), + raw_barcode text, + raw_item_id bigint, + raw_subevent_id bigint, + raw_variation_id bigint, + successful boolean NOT NULL, + force_sent boolean, + raw_source_type character varying(100) +); + + +ALTER TABLE public.pretixbase_checkin OWNER TO pretix; + +-- +-- Name: pretixbase_checkinlist; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_checkinlist ( + id bigint NOT NULL, + name character varying(190) NOT NULL, + all_products boolean NOT NULL, + event_id bigint NOT NULL, + subevent_id bigint, + include_pending boolean NOT NULL, + allow_entry_after_exit boolean NOT NULL, + allow_multiple_entries boolean NOT NULL, + rules jsonb NOT NULL, + exit_all_at timestamp with time zone, + addon_match boolean NOT NULL, + consider_tickets_used boolean NOT NULL, + ignore_in_statistics boolean NOT NULL +); + + +ALTER TABLE public.pretixbase_checkinlist OWNER TO pretix; + +-- +-- Name: pretixbase_checkinlist_gates; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_checkinlist_gates ( + id bigint NOT NULL, + checkinlist_id bigint NOT NULL, + gate_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_checkinlist_gates OWNER TO pretix; + +-- +-- Name: pretixbase_checkinlist_gates_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_checkinlist_gates ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_checkinlist_gates_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_checkinlist_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_checkinlist ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_checkinlist_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_checkinlist_limit_products; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_checkinlist_limit_products ( + id bigint NOT NULL, + checkinlist_id bigint NOT NULL, + item_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_checkinlist_limit_products OWNER TO pretix; + +-- +-- Name: pretixbase_checkinlist_limit_products_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_checkinlist_limit_products ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_checkinlist_limit_products_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_customer; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_customer ( + id bigint NOT NULL, + identifier character varying(190) NOT NULL, + email character varying(190), + password character varying(128) NOT NULL, + name_cached character varying(255) NOT NULL, + name_parts jsonb NOT NULL, + is_active boolean NOT NULL, + is_verified boolean NOT NULL, + last_login timestamp with time zone, + date_joined timestamp with time zone NOT NULL, + locale character varying(50) NOT NULL, + last_modified timestamp with time zone NOT NULL, + organizer_id bigint NOT NULL, + phone character varying(128), + external_identifier character varying(255), + notes text, + provider_id bigint +); + + +ALTER TABLE public.pretixbase_customer OWNER TO pretix; + +-- +-- Name: pretixbase_customer_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_customer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_customer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_customerssoaccesstoken; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_customerssoaccesstoken ( + id bigint NOT NULL, + from_code character varying(255), + token character varying(255) NOT NULL, + expires timestamp with time zone NOT NULL, + scope text NOT NULL, + client_id bigint NOT NULL, + customer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_customerssoaccesstoken OWNER TO pretix; + +-- +-- Name: pretixbase_customerssoaccesstoken_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_customerssoaccesstoken ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_customerssoaccesstoken_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_customerssoclient; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_customerssoclient ( + id bigint NOT NULL, + name character varying(255) NOT NULL, + is_active boolean NOT NULL, + client_id character varying(100) NOT NULL, + client_secret character varying(255) NOT NULL, + client_type character varying(32) NOT NULL, + authorization_grant_type character varying(32) NOT NULL, + redirect_uris text NOT NULL, + allowed_scopes text NOT NULL, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_customerssoclient OWNER TO pretix; + +-- +-- Name: pretixbase_customerssoclient_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_customerssoclient ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_customerssoclient_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_customerssogrant; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_customerssogrant ( + id bigint NOT NULL, + code character varying(255) NOT NULL, + nonce character varying(255), + auth_time integer NOT NULL, + expires timestamp with time zone NOT NULL, + redirect_uri text NOT NULL, + scope text NOT NULL, + client_id bigint NOT NULL, + customer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_customerssogrant OWNER TO pretix; + +-- +-- Name: pretixbase_customerssogrant_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_customerssogrant ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_customerssogrant_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_customerssoprovider; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_customerssoprovider ( + id bigint NOT NULL, + name text NOT NULL, + is_active boolean NOT NULL, + button_label text NOT NULL, + method character varying(190) NOT NULL, + configuration jsonb NOT NULL, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_customerssoprovider OWNER TO pretix; + +-- +-- Name: pretixbase_customerssoprovider_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_customerssoprovider ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_customerssoprovider_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_device; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_device ( + id bigint NOT NULL, + device_id integer NOT NULL, + unique_serial character varying(190) NOT NULL, + initialization_token character varying(190) NOT NULL, + api_token character varying(190), + all_events boolean NOT NULL, + name character varying(190) NOT NULL, + created timestamp with time zone NOT NULL, + initialized timestamp with time zone, + hardware_brand character varying(190), + hardware_model character varying(190), + software_brand character varying(190), + software_version character varying(190), + organizer_id bigint NOT NULL, + revoked boolean NOT NULL, + security_profile character varying(190), + gate_id bigint, + info jsonb, + os_name character varying(190), + os_version character varying(190), + rsa_pubkey text, + CONSTRAINT pretixbase_device_device_id_check CHECK ((device_id >= 0)) +); + + +ALTER TABLE public.pretixbase_device OWNER TO pretix; + +-- +-- Name: pretixbase_device_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_device ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_device_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_device_limit_events; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_device_limit_events ( + id bigint NOT NULL, + device_id bigint NOT NULL, + event_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_device_limit_events OWNER TO pretix; + +-- +-- Name: pretixbase_device_limit_events_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_device_limit_events ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_device_limit_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_discount; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_discount ( + id bigint NOT NULL, + active boolean NOT NULL, + internal_name character varying(255) NOT NULL, + "position" integer NOT NULL, + available_from timestamp with time zone, + available_until timestamp with time zone, + subevent_mode character varying(50) NOT NULL, + condition_all_products boolean NOT NULL, + condition_min_count integer NOT NULL, + condition_min_value numeric(13,2) NOT NULL, + benefit_discount_matching_percent numeric(10,2) NOT NULL, + benefit_only_apply_to_cheapest_n_matches integer, + condition_apply_to_addons boolean NOT NULL, + event_id bigint NOT NULL, + condition_ignore_voucher_discounted boolean NOT NULL, + benefit_apply_to_addons boolean NOT NULL, + benefit_ignore_voucher_discounted boolean NOT NULL, + benefit_same_products boolean NOT NULL, + all_sales_channels boolean NOT NULL, + CONSTRAINT pretixbase_discount_benefit_only_apply_to_cheapest_n_matc_check CHECK ((benefit_only_apply_to_cheapest_n_matches >= 0)), + CONSTRAINT pretixbase_discount_condition_min_count_check CHECK ((condition_min_count >= 0)), + CONSTRAINT pretixbase_discount_position_check CHECK (("position" >= 0)) +); + + +ALTER TABLE public.pretixbase_discount OWNER TO pretix; + +-- +-- Name: pretixbase_discount_benefit_limit_products; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_discount_benefit_limit_products ( + id bigint NOT NULL, + discount_id bigint NOT NULL, + item_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_discount_benefit_limit_products OWNER TO pretix; + +-- +-- Name: pretixbase_discount_benefit_limit_products_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_discount_benefit_limit_products ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_discount_benefit_limit_products_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_discount_condition_limit_products; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_discount_condition_limit_products ( + id bigint NOT NULL, + discount_id bigint NOT NULL, + item_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_discount_condition_limit_products OWNER TO pretix; + +-- +-- Name: pretixbase_discount_condition_limit_products_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_discount_condition_limit_products ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_discount_condition_limit_products_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_discount_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_discount ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_discount_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_discount_limit_sales_channels; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_discount_limit_sales_channels ( + id bigint NOT NULL, + discount_id bigint NOT NULL, + saleschannel_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_discount_limit_sales_channels OWNER TO pretix; + +-- +-- Name: pretixbase_discount_limit_sales_channels_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_discount_limit_sales_channels ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_discount_limit_sales_channels_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_event; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_event ( + id bigint NOT NULL, + name text NOT NULL, + slug character varying(50) NOT NULL, + currency character varying(10) NOT NULL, + date_from timestamp with time zone NOT NULL, + date_to timestamp with time zone, + is_public boolean NOT NULL, + presale_end timestamp with time zone, + presale_start timestamp with time zone, + plugins text NOT NULL, + organizer_id bigint NOT NULL, + live boolean NOT NULL, + location text, + date_admission timestamp with time zone, + comment text, + has_subevents boolean NOT NULL, + testmode boolean NOT NULL, + seating_plan_id bigint, + geo_lat double precision, + geo_lon double precision, + last_modified timestamp with time zone NOT NULL, + all_sales_channels boolean NOT NULL +); + + +ALTER TABLE public.pretixbase_event OWNER TO pretix; + +-- +-- Name: pretixbase_event_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_event ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_event_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_event_limit_sales_channels; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_event_limit_sales_channels ( + id bigint NOT NULL, + event_id bigint NOT NULL, + saleschannel_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_event_limit_sales_channels OWNER TO pretix; + +-- +-- Name: pretixbase_event_limit_sales_channels_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_event_limit_sales_channels ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_event_limit_sales_channels_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_event_settingsstore; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_event_settingsstore ( + id bigint NOT NULL, + key character varying(255) NOT NULL, + value text NOT NULL, + object_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_event_settingsstore OWNER TO pretix; + +-- +-- Name: pretixbase_eventfooterlink; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_eventfooterlink ( + id bigint NOT NULL, + label text NOT NULL, + url character varying(200) NOT NULL, + event_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_eventfooterlink OWNER TO pretix; + +-- +-- Name: pretixbase_eventfooterlink_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_eventfooterlink ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_eventfooterlink_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_eventlock; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_eventlock ( + event character varying(36) NOT NULL, + date timestamp with time zone NOT NULL, + token uuid NOT NULL +); + + +ALTER TABLE public.pretixbase_eventlock OWNER TO pretix; + +-- +-- Name: pretixbase_eventmetaproperty; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_eventmetaproperty ( + id bigint NOT NULL, + name character varying(50) NOT NULL, + "default" text NOT NULL, + organizer_id bigint NOT NULL, + protected boolean NOT NULL, + required boolean NOT NULL, + filter_allowed boolean NOT NULL, + filter_public boolean NOT NULL, + public_label text, + "position" integer NOT NULL, + choices jsonb +); + + +ALTER TABLE public.pretixbase_eventmetaproperty OWNER TO pretix; + +-- +-- Name: pretixbase_eventmetaproperty_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_eventmetaproperty ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_eventmetaproperty_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_eventmetavalue; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_eventmetavalue ( + id bigint NOT NULL, + value text NOT NULL, + event_id bigint NOT NULL, + property_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_eventmetavalue OWNER TO pretix; + +-- +-- Name: pretixbase_eventmetavalue_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_eventmetavalue ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_eventmetavalue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_eventsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_event_settingsstore ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_eventsetting_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_exchangerate; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_exchangerate ( + id bigint NOT NULL, + source character varying(100) NOT NULL, + source_date date NOT NULL, + updated timestamp with time zone NOT NULL, + source_currency character varying(3) NOT NULL, + other_currency character varying(3) NOT NULL, + rate numeric(16,6) NOT NULL +); + + +ALTER TABLE public.pretixbase_exchangerate OWNER TO pretix; + +-- +-- Name: pretixbase_exchangerate_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_exchangerate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_exchangerate_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_gate; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_gate ( + id bigint NOT NULL, + name character varying(190) NOT NULL, + identifier character varying(190) NOT NULL, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_gate OWNER TO pretix; + +-- +-- Name: pretixbase_gate_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_gate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_gate_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_giftcard; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_giftcard ( + id bigint NOT NULL, + issuance timestamp with time zone NOT NULL, + secret character varying(190) NOT NULL, + currency character varying(10) NOT NULL, + issued_in_id bigint, + issuer_id bigint NOT NULL, + testmode boolean NOT NULL, + conditions text, + expires timestamp with time zone, + owner_ticket_id bigint +); + + +ALTER TABLE public.pretixbase_giftcard OWNER TO pretix; + +-- +-- Name: pretixbase_giftcard_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_giftcard ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_giftcard_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_giftcardacceptance; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_giftcardacceptance ( + id bigint NOT NULL, + acceptor_id bigint NOT NULL, + issuer_id bigint NOT NULL, + active boolean NOT NULL, + reusable_media boolean NOT NULL +); + + +ALTER TABLE public.pretixbase_giftcardacceptance OWNER TO pretix; + +-- +-- Name: pretixbase_giftcardacceptance_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_giftcardacceptance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_giftcardacceptance_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_giftcardtransaction; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_giftcardtransaction ( + id bigint NOT NULL, + datetime timestamp with time zone NOT NULL, + value numeric(13,2) NOT NULL, + card_id bigint NOT NULL, + order_id bigint, + payment_id bigint, + refund_id bigint, + text text, + acceptor_id bigint, + info jsonb +); + + +ALTER TABLE public.pretixbase_giftcardtransaction OWNER TO pretix; + +-- +-- Name: pretixbase_giftcardtransaction_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_giftcardtransaction ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_giftcardtransaction_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_globalsettingsobject_settingsstore; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_globalsettingsobject_settingsstore ( + id bigint NOT NULL, + key character varying(255) NOT NULL, + value text NOT NULL +); + + +ALTER TABLE public.pretixbase_globalsettingsobject_settingsstore OWNER TO pretix; + +-- +-- Name: pretixbase_globalsettingsobject_settingsstore_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_globalsettingsobject_settingsstore ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_globalsettingsobject_settingsstore_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_historicpassword; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_historicpassword ( + id bigint NOT NULL, + created timestamp with time zone NOT NULL, + password character varying(128) NOT NULL, + user_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_historicpassword OWNER TO pretix; + +-- +-- Name: pretixbase_historicpassword_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_historicpassword ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_historicpassword_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_invoice; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_invoice ( + id bigint NOT NULL, + invoice_from text NOT NULL, + invoice_to text NOT NULL, + date date NOT NULL, + file character varying(255), + event_id bigint NOT NULL, + order_id bigint NOT NULL, + locale character varying(50) NOT NULL, + additional_text text NOT NULL, + is_cancellation boolean NOT NULL, + refers_id bigint, + invoice_no character varying(19) NOT NULL, + footer_text text NOT NULL, + introductory_text text NOT NULL, + payment_provider_text text NOT NULL, + prefix character varying(160) NOT NULL, + organizer_id bigint NOT NULL, + foreign_currency_display character varying(50), + foreign_currency_rate numeric(13,4), + foreign_currency_rate_date date, + internal_reference text NOT NULL, + full_invoice_no character varying(190) NOT NULL, + shredded boolean NOT NULL, + invoice_from_city character varying(190), + invoice_from_country character varying(2), + invoice_from_name character varying(190), + invoice_from_tax_id character varying(190), + invoice_from_vat_id character varying(190), + invoice_from_zipcode character varying(190), + invoice_to_city text, + invoice_to_company text, + invoice_to_country character varying(2), + invoice_to_name text, + invoice_to_street text, + invoice_to_vat_id text, + invoice_to_zipcode character varying(190), + reverse_charge boolean NOT NULL, + invoice_to_beneficiary text, + invoice_to_state character varying(190), + custom_field character varying(255), + sent_to_organizer boolean, + sent_to_customer timestamp with time zone, + payment_provider_stamp character varying(100), + foreign_currency_source character varying(100) +); + + +ALTER TABLE public.pretixbase_invoice OWNER TO pretix; + +-- +-- Name: pretixbase_invoice_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_invoice ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_invoice_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_invoiceaddress; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_invoiceaddress ( + id bigint NOT NULL, + last_modified timestamp with time zone NOT NULL, + company character varying(255) NOT NULL, + name_cached character varying(255) NOT NULL, + street text NOT NULL, + zipcode character varying(30) NOT NULL, + city character varying(255) NOT NULL, + country_old character varying(255) NOT NULL, + vat_id character varying(255) NOT NULL, + order_id bigint, + country character varying(2) NOT NULL, + is_business boolean NOT NULL, + vat_id_validated boolean NOT NULL, + internal_reference text NOT NULL, + name_parts jsonb NOT NULL, + beneficiary text NOT NULL, + state character varying(255) NOT NULL, + custom_field character varying(255), + customer_id bigint +); + + +ALTER TABLE public.pretixbase_invoiceaddress OWNER TO pretix; + +-- +-- Name: pretixbase_invoiceaddress_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_invoiceaddress ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_invoiceaddress_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_invoiceline; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_invoiceline ( + id bigint NOT NULL, + description text NOT NULL, + gross_value numeric(13,2) NOT NULL, + tax_value numeric(13,2) NOT NULL, + tax_rate numeric(7,2) NOT NULL, + invoice_id bigint NOT NULL, + tax_name character varying(190) NOT NULL, + "position" integer NOT NULL, + event_date_from timestamp with time zone, + subevent_id bigint, + attendee_name text, + event_date_to timestamp with time zone, + item_id bigint, + variation_id bigint, + fee_internal_type character varying(190), + fee_type character varying(190), + event_location text, + tax_code character varying(190), + CONSTRAINT pretixbase_invoiceline_position_check CHECK (("position" >= 0)) +); + + +ALTER TABLE public.pretixbase_invoiceline OWNER TO pretix; + +-- +-- Name: pretixbase_invoiceline_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_invoiceline ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_invoiceline_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_item; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_item ( + id bigint NOT NULL, + name text NOT NULL, + active boolean NOT NULL, + description text, + default_price numeric(13,2) NOT NULL, + admission boolean NOT NULL, + "position" integer NOT NULL, + picture character varying(255), + available_from timestamp with time zone, + available_until timestamp with time zone, + category_id bigint, + event_id bigint NOT NULL, + free_price boolean NOT NULL, + hide_without_voucher boolean NOT NULL, + require_voucher boolean NOT NULL, + allow_cancel boolean NOT NULL, + max_per_order integer, + min_per_order integer, + tax_rule_id bigint, + checkin_attention boolean NOT NULL, + internal_name character varying(255), + original_price numeric(13,2), + require_approval boolean NOT NULL, + generate_tickets boolean, + require_bundling boolean NOT NULL, + show_quota_left boolean, + hidden_if_available_id bigint, + allow_waitinglist boolean NOT NULL, + issue_giftcard boolean NOT NULL, + grant_membership_duration_days integer NOT NULL, + grant_membership_duration_like_event boolean NOT NULL, + grant_membership_duration_months integer NOT NULL, + require_membership boolean NOT NULL, + grant_membership_type_id bigint, + require_membership_hidden boolean NOT NULL, + personalized boolean NOT NULL, + validity_dynamic_duration_days integer, + validity_dynamic_duration_hours integer, + validity_dynamic_duration_minutes integer, + validity_dynamic_duration_months integer, + validity_dynamic_start_choice boolean NOT NULL, + validity_dynamic_start_choice_day_limit integer, + validity_fixed_from timestamp with time zone, + validity_fixed_until timestamp with time zone, + validity_mode character varying(16), + media_policy character varying(16), + media_type character varying(100), + free_price_suggestion numeric(13,2), + hidden_if_item_available_id bigint, + checkin_text text, + available_from_mode character varying(16) NOT NULL, + available_until_mode character varying(16) NOT NULL, + all_sales_channels boolean NOT NULL, + CONSTRAINT pretixbase_item_validity_dynamic_duration_days_check CHECK ((validity_dynamic_duration_days >= 0)), + CONSTRAINT pretixbase_item_validity_dynamic_duration_hours_check CHECK ((validity_dynamic_duration_hours >= 0)), + CONSTRAINT pretixbase_item_validity_dynamic_duration_minutes_check CHECK ((validity_dynamic_duration_minutes >= 0)), + CONSTRAINT pretixbase_item_validity_dynamic_duration_months_check CHECK ((validity_dynamic_duration_months >= 0)), + CONSTRAINT pretixbase_item_validity_dynamic_start_choice_day_limit_check CHECK ((validity_dynamic_start_choice_day_limit >= 0)) +); + + +ALTER TABLE public.pretixbase_item OWNER TO pretix; + +-- +-- Name: pretixbase_item_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_item ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_item_limit_sales_channels; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_item_limit_sales_channels ( + id bigint NOT NULL, + item_id bigint NOT NULL, + saleschannel_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_item_limit_sales_channels OWNER TO pretix; + +-- +-- Name: pretixbase_item_limit_sales_channels_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_item_limit_sales_channels ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_item_limit_sales_channels_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_item_require_membership_types; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_item_require_membership_types ( + id bigint NOT NULL, + item_id bigint NOT NULL, + membershiptype_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_item_require_membership_types OWNER TO pretix; + +-- +-- Name: pretixbase_item_require_membership_types_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_item_require_membership_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_item_require_membership_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itemaddon; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itemaddon ( + id bigint NOT NULL, + min_count integer NOT NULL, + max_count integer NOT NULL, + addon_category_id bigint NOT NULL, + base_item_id bigint NOT NULL, + "position" integer NOT NULL, + price_included boolean NOT NULL, + multi_allowed boolean NOT NULL, + CONSTRAINT pretixbase_itemaddon_max_count_check CHECK ((max_count >= 0)), + CONSTRAINT pretixbase_itemaddon_min_count_check CHECK ((min_count >= 0)), + CONSTRAINT pretixbase_itemaddon_position_check CHECK (("position" >= 0)) +); + + +ALTER TABLE public.pretixbase_itemaddon OWNER TO pretix; + +-- +-- Name: pretixbase_itemaddon_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itemaddon ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itemaddon_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itembundle; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itembundle ( + id bigint NOT NULL, + count integer NOT NULL, + designated_price numeric(13,2) NOT NULL, + base_item_id bigint NOT NULL, + bundled_item_id bigint NOT NULL, + bundled_variation_id bigint, + CONSTRAINT pretixbase_itembundle_count_check CHECK ((count >= 0)) +); + + +ALTER TABLE public.pretixbase_itembundle OWNER TO pretix; + +-- +-- Name: pretixbase_itembundle_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itembundle ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itembundle_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itemcategory; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itemcategory ( + id bigint NOT NULL, + name text NOT NULL, + "position" integer NOT NULL, + event_id bigint NOT NULL, + description text NOT NULL, + is_addon boolean NOT NULL, + internal_name character varying(255), + cross_selling_condition character varying(10), + cross_selling_mode character varying(5) +); + + +ALTER TABLE public.pretixbase_itemcategory OWNER TO pretix; + +-- +-- Name: pretixbase_itemcategory_cross_selling_match_products; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itemcategory_cross_selling_match_products ( + id bigint NOT NULL, + itemcategory_id bigint NOT NULL, + item_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_itemcategory_cross_selling_match_products OWNER TO pretix; + +-- +-- Name: pretixbase_itemcategory_cross_selling_match_products_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itemcategory_cross_selling_match_products ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itemcategory_cross_selling_match_products_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itemcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itemcategory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itemcategory_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itemmetaproperty; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itemmetaproperty ( + id bigint NOT NULL, + name character varying(50) NOT NULL, + "default" text NOT NULL, + event_id bigint NOT NULL, + allowed_values text, + required boolean NOT NULL +); + + +ALTER TABLE public.pretixbase_itemmetaproperty OWNER TO pretix; + +-- +-- Name: pretixbase_itemmetaproperty_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itemmetaproperty ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itemmetaproperty_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itemmetavalue; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itemmetavalue ( + id bigint NOT NULL, + value text NOT NULL, + item_id bigint NOT NULL, + property_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_itemmetavalue OWNER TO pretix; + +-- +-- Name: pretixbase_itemmetavalue_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itemmetavalue ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itemmetavalue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itemvariation; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itemvariation ( + id bigint NOT NULL, + value text NOT NULL, + active boolean NOT NULL, + "position" integer NOT NULL, + default_price numeric(13,2), + item_id bigint NOT NULL, + description text, + original_price numeric(13,2), + require_membership boolean NOT NULL, + available_from timestamp with time zone, + available_until timestamp with time zone, + hide_without_voucher boolean NOT NULL, + require_membership_hidden boolean NOT NULL, + require_approval boolean NOT NULL, + checkin_attention boolean NOT NULL, + free_price_suggestion numeric(13,2), + checkin_text text, + available_from_mode character varying(16) NOT NULL, + available_until_mode character varying(16) NOT NULL, + all_sales_channels boolean NOT NULL, + CONSTRAINT pretixbase_itemvariation_position_check CHECK (("position" >= 0)) +); + + +ALTER TABLE public.pretixbase_itemvariation OWNER TO pretix; + +-- +-- Name: pretixbase_itemvariation_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itemvariation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itemvariation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itemvariation_limit_sales_channels; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itemvariation_limit_sales_channels ( + id bigint NOT NULL, + itemvariation_id bigint NOT NULL, + saleschannel_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_itemvariation_limit_sales_channels OWNER TO pretix; + +-- +-- Name: pretixbase_itemvariation_limit_sales_channels_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itemvariation_limit_sales_channels ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itemvariation_limit_sales_channels_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itemvariation_require_membership_types; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itemvariation_require_membership_types ( + id bigint NOT NULL, + itemvariation_id bigint NOT NULL, + membershiptype_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_itemvariation_require_membership_types OWNER TO pretix; + +-- +-- Name: pretixbase_itemvariation_require_membership_types_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itemvariation_require_membership_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itemvariation_require_membership_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_itemvariationmetavalue; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_itemvariationmetavalue ( + id bigint NOT NULL, + value text NOT NULL, + property_id bigint NOT NULL, + variation_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_itemvariationmetavalue OWNER TO pretix; + +-- +-- Name: pretixbase_itemvariationmetavalue_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_itemvariationmetavalue ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_itemvariationmetavalue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_logentry; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_logentry ( + id bigint NOT NULL, + object_id integer NOT NULL, + datetime timestamp with time zone NOT NULL, + action_type character varying(255) NOT NULL, + data text NOT NULL, + content_type_id integer NOT NULL, + event_id bigint, + user_id bigint, + api_token_id bigint, + visible boolean NOT NULL, + shredded boolean NOT NULL, + oauth_application_id bigint, + device_id bigint, + organizer_link_id bigint, + CONSTRAINT pretixbase_logentry_object_id_check CHECK ((object_id >= 0)) +); + + +ALTER TABLE public.pretixbase_logentry OWNER TO pretix; + +-- +-- Name: pretixbase_logentry_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_logentry ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_logentry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_mediumkeyset; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_mediumkeyset ( + id bigint NOT NULL, + public_id bigint NOT NULL, + media_type character varying(100) NOT NULL, + active boolean NOT NULL, + uid_key bytea NOT NULL, + diversification_key bytea NOT NULL, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_mediumkeyset OWNER TO pretix; + +-- +-- Name: pretixbase_mediumkeyset_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_mediumkeyset ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_mediumkeyset_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_membership; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_membership ( + id bigint NOT NULL, + date_start timestamp with time zone NOT NULL, + date_end timestamp with time zone NOT NULL, + attendee_name_parts jsonb, + customer_id bigint NOT NULL, + granted_in_id bigint, + membership_type_id bigint NOT NULL, + testmode boolean NOT NULL, + canceled boolean NOT NULL +); + + +ALTER TABLE public.pretixbase_membership OWNER TO pretix; + +-- +-- Name: pretixbase_membership_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_membership ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_membership_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_membershiptype; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_membershiptype ( + id bigint NOT NULL, + name text NOT NULL, + transferable boolean NOT NULL, + allow_parallel_usage boolean NOT NULL, + max_usages integer, + organizer_id bigint NOT NULL, + CONSTRAINT pretixbase_membershiptype_max_usages_check CHECK ((max_usages >= 0)) +); + + +ALTER TABLE public.pretixbase_membershiptype OWNER TO pretix; + +-- +-- Name: pretixbase_membershiptype_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_membershiptype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_membershiptype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_notificationsetting; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_notificationsetting ( + id bigint NOT NULL, + action_type character varying(255) NOT NULL, + method character varying(255) NOT NULL, + event_id bigint, + user_id bigint NOT NULL, + enabled boolean NOT NULL +); + + +ALTER TABLE public.pretixbase_notificationsetting OWNER TO pretix; + +-- +-- Name: pretixbase_notificationsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_notificationsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_notificationsetting_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_order; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_order ( + id bigint NOT NULL, + code character varying(16) NOT NULL, + status character varying(3) NOT NULL, + email character varying(254), + locale character varying(32), + secret character varying(32) NOT NULL, + datetime timestamp with time zone NOT NULL, + expires timestamp with time zone NOT NULL, + total numeric(13,2) NOT NULL, + event_id bigint NOT NULL, + comment text NOT NULL, + expiry_reminder_sent boolean NOT NULL, + meta_info text, + download_reminder_sent boolean NOT NULL, + checkin_attention boolean NOT NULL, + last_modified timestamp with time zone NOT NULL, + require_approval boolean NOT NULL, + testmode boolean NOT NULL, + email_known_to_work boolean NOT NULL, + cancellation_date timestamp with time zone, + phone character varying(128), + customer_id bigint, + custom_followup_at date, + valid_if_pending boolean NOT NULL, + invoice_dirty boolean NOT NULL, + checkin_text text, + organizer_id bigint, + internal_secret character varying(32), + sales_channel_id bigint NOT NULL, + api_meta jsonb NOT NULL +); + + +ALTER TABLE public.pretixbase_order OWNER TO pretix; + +-- +-- Name: pretixbase_order_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_order ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_order_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_orderfee; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_orderfee ( + id bigint NOT NULL, + value numeric(13,2) NOT NULL, + description character varying(190) NOT NULL, + internal_type character varying(255) NOT NULL, + fee_type character varying(100) NOT NULL, + tax_rate numeric(7,2) NOT NULL, + tax_value numeric(13,2) NOT NULL, + order_id bigint NOT NULL, + tax_rule_id bigint, + canceled boolean NOT NULL, + tax_code character varying(190) +); + + +ALTER TABLE public.pretixbase_orderfee OWNER TO pretix; + +-- +-- Name: pretixbase_orderfee_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_orderfee ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_orderfee_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_orderpayment; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_orderpayment ( + id bigint NOT NULL, + local_id integer NOT NULL, + state character varying(190) NOT NULL, + amount numeric(13,2) NOT NULL, + created timestamp with time zone NOT NULL, + payment_date timestamp with time zone, + provider character varying(255), + info text, + migrated boolean NOT NULL, + fee_id bigint, + order_id bigint NOT NULL, + process_initiated boolean, + CONSTRAINT pretixbase_orderpayment_local_id_check CHECK ((local_id >= 0)) +); + + +ALTER TABLE public.pretixbase_orderpayment OWNER TO pretix; + +-- +-- Name: pretixbase_orderpayment_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_orderpayment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_orderpayment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_orderposition; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_orderposition ( + id bigint NOT NULL, + price numeric(13,2) NOT NULL, + attendee_name_cached character varying(255), + item_id bigint NOT NULL, + order_id bigint NOT NULL, + variation_id bigint, + voucher_id bigint, + tax_rate numeric(7,2) NOT NULL, + tax_value numeric(13,2) NOT NULL, + secret character varying(255) NOT NULL, + positionid integer NOT NULL, + attendee_email character varying(254), + addon_to_id bigint, + meta_info text, + subevent_id bigint, + tax_rule_id bigint, + pseudonymization_id character varying(16) NOT NULL, + attendee_name_parts jsonb NOT NULL, + canceled boolean NOT NULL, + web_secret character varying(32) NOT NULL, + seat_id bigint, + city character varying(255), + company character varying(255), + country character varying(2), + state character varying(255), + street text, + zipcode character varying(30), + used_membership_id bigint, + is_bundled boolean NOT NULL, + discount_id bigint, + voucher_budget_use numeric(13,2), + blocked jsonb, + valid_from timestamp with time zone, + valid_until timestamp with time zone, + ignore_from_quota_while_blocked boolean NOT NULL, + organizer_id bigint, + tax_code character varying(190), + CONSTRAINT pretixbase_orderposition_positionid_check CHECK ((positionid >= 0)) +); + + +ALTER TABLE public.pretixbase_orderposition OWNER TO pretix; + +-- +-- Name: pretixbase_orderposition_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_orderposition ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_orderposition_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_orderrefund; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_orderrefund ( + id bigint NOT NULL, + local_id integer NOT NULL, + state character varying(190) NOT NULL, + source character varying(190) NOT NULL, + amount numeric(13,2) NOT NULL, + created timestamp with time zone NOT NULL, + execution_date timestamp with time zone, + provider character varying(255), + info text, + order_id bigint NOT NULL, + payment_id bigint, + comment text, + CONSTRAINT pretixbase_orderrefund_local_id_check CHECK ((local_id >= 0)) +); + + +ALTER TABLE public.pretixbase_orderrefund OWNER TO pretix; + +-- +-- Name: pretixbase_orderrefund_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_orderrefund ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_orderrefund_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_organizer; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_organizer ( + id bigint NOT NULL, + name character varying(200) NOT NULL, + slug character varying(50) NOT NULL +); + + +ALTER TABLE public.pretixbase_organizer OWNER TO pretix; + +-- +-- Name: pretixbase_organizer_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_organizer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_organizer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_organizer_settingsstore; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_organizer_settingsstore ( + id bigint NOT NULL, + key character varying(255) NOT NULL, + value text NOT NULL, + object_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_organizer_settingsstore OWNER TO pretix; + +-- +-- Name: pretixbase_organizerfooterlink; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_organizerfooterlink ( + id bigint NOT NULL, + label text NOT NULL, + url character varying(200) NOT NULL, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_organizerfooterlink OWNER TO pretix; + +-- +-- Name: pretixbase_organizerfooterlink_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_organizerfooterlink ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_organizerfooterlink_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_organizersetting_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_organizer_settingsstore ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_organizersetting_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_printlog; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_printlog ( + id bigint NOT NULL, + datetime timestamp with time zone NOT NULL, + created timestamp with time zone, + successful boolean NOT NULL, + source character varying(255) NOT NULL, + type character varying(255) NOT NULL, + info jsonb NOT NULL, + api_token_id bigint, + device_id bigint, + oauth_application_id bigint, + position_id bigint NOT NULL, + user_id bigint +); + + +ALTER TABLE public.pretixbase_printlog OWNER TO pretix; + +-- +-- Name: pretixbase_printlog_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_printlog ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_printlog_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_question; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_question ( + id bigint NOT NULL, + question text NOT NULL, + type character varying(5) NOT NULL, + required boolean NOT NULL, + event_id bigint NOT NULL, + "position" integer NOT NULL, + help_text text, + ask_during_checkin boolean NOT NULL, + identifier character varying(190) NOT NULL, + dependency_question_id bigint, + dependency_values text NOT NULL, + hidden boolean NOT NULL, + print_on_invoice boolean NOT NULL, + valid_date_max date, + valid_date_min date, + valid_datetime_max timestamp with time zone, + valid_datetime_min timestamp with time zone, + valid_number_max numeric(16,6), + valid_number_min numeric(16,6), + valid_file_portrait boolean NOT NULL, + valid_string_length_max integer, + show_during_checkin boolean NOT NULL, + CONSTRAINT pretixbase_question_position_1057712a_check CHECK (("position" >= 0)), + CONSTRAINT pretixbase_question_valid_string_length_max_check CHECK ((valid_string_length_max >= 0)) +); + + +ALTER TABLE public.pretixbase_question OWNER TO pretix; + +-- +-- Name: pretixbase_question_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_question ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_question_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_question_items; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_question_items ( + id bigint NOT NULL, + question_id bigint NOT NULL, + item_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_question_items OWNER TO pretix; + +-- +-- Name: pretixbase_question_items_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_question_items ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_question_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_questionanswer; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_questionanswer ( + id bigint NOT NULL, + answer text NOT NULL, + cartposition_id bigint, + orderposition_id bigint, + question_id bigint NOT NULL, + file character varying(255) +); + + +ALTER TABLE public.pretixbase_questionanswer OWNER TO pretix; + +-- +-- Name: pretixbase_questionanswer_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_questionanswer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_questionanswer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_questionanswer_options; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_questionanswer_options ( + id bigint NOT NULL, + questionanswer_id bigint NOT NULL, + questionoption_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_questionanswer_options OWNER TO pretix; + +-- +-- Name: pretixbase_questionanswer_options_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_questionanswer_options ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_questionanswer_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_questionoption; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_questionoption ( + id bigint NOT NULL, + answer text NOT NULL, + question_id bigint NOT NULL, + "position" integer NOT NULL, + identifier character varying(190) NOT NULL +); + + +ALTER TABLE public.pretixbase_questionoption OWNER TO pretix; + +-- +-- Name: pretixbase_questionoption_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_questionoption ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_questionoption_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_quota; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_quota ( + id bigint NOT NULL, + name character varying(200) NOT NULL, + size integer, + event_id bigint NOT NULL, + subevent_id bigint, + close_when_sold_out boolean NOT NULL, + closed boolean NOT NULL, + release_after_exit boolean NOT NULL, + ignore_for_event_availability boolean NOT NULL, + CONSTRAINT pretixbase_quota_size_check CHECK ((size >= 0)) +); + + +ALTER TABLE public.pretixbase_quota OWNER TO pretix; + +-- +-- Name: pretixbase_quota_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_quota ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_quota_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_quota_items; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_quota_items ( + id bigint NOT NULL, + quota_id bigint NOT NULL, + item_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_quota_items OWNER TO pretix; + +-- +-- Name: pretixbase_quota_items_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_quota_items ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_quota_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_quota_variations; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_quota_variations ( + id bigint NOT NULL, + quota_id bigint NOT NULL, + itemvariation_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_quota_variations OWNER TO pretix; + +-- +-- Name: pretixbase_quota_variations_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_quota_variations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_quota_variations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_reusablemedium; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_reusablemedium ( + id bigint NOT NULL, + created timestamp with time zone NOT NULL, + updated timestamp with time zone NOT NULL, + type character varying(100) NOT NULL, + identifier character varying(200) NOT NULL, + active boolean NOT NULL, + expires timestamp with time zone, + info jsonb NOT NULL, + notes text, + customer_id bigint, + linked_giftcard_id bigint, + linked_orderposition_id bigint, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_reusablemedium OWNER TO pretix; + +-- +-- Name: pretixbase_reusablemedium_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_reusablemedium ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_reusablemedium_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_revokedticketsecret; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_revokedticketsecret ( + id bigint NOT NULL, + secret text NOT NULL, + created timestamp with time zone NOT NULL, + event_id bigint NOT NULL, + position_id bigint +); + + +ALTER TABLE public.pretixbase_revokedticketsecret OWNER TO pretix; + +-- +-- Name: pretixbase_revokedticketsecret_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_revokedticketsecret ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_revokedticketsecret_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_saleschannel; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_saleschannel ( + id bigint NOT NULL, + label text NOT NULL, + identifier character varying(200) NOT NULL, + type character varying(200) NOT NULL, + "position" integer NOT NULL, + configuration jsonb NOT NULL, + organizer_id bigint NOT NULL, + CONSTRAINT pretixbase_saleschannel_position_check CHECK (("position" >= 0)) +); + + +ALTER TABLE public.pretixbase_saleschannel OWNER TO pretix; + +-- +-- Name: pretixbase_saleschannel_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_saleschannel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_saleschannel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_scheduledeventexport; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_scheduledeventexport ( + id bigint NOT NULL, + export_identifier character varying(190) NOT NULL, + export_form_data jsonb NOT NULL, + locale character varying(250) NOT NULL, + mail_additional_recipients text NOT NULL, + mail_additional_recipients_cc text NOT NULL, + mail_additional_recipients_bcc text NOT NULL, + mail_subject character varying(250) NOT NULL, + mail_template text NOT NULL, + schedule_rrule text, + schedule_rrule_time time without time zone NOT NULL, + schedule_next_run timestamp with time zone, + error_counter integer NOT NULL, + error_last_message text, + event_id bigint NOT NULL, + owner_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_scheduledeventexport OWNER TO pretix; + +-- +-- Name: pretixbase_scheduledeventexport_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_scheduledeventexport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_scheduledeventexport_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_scheduledorganizerexport; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_scheduledorganizerexport ( + id bigint NOT NULL, + export_identifier character varying(190) NOT NULL, + export_form_data jsonb NOT NULL, + locale character varying(250) NOT NULL, + mail_additional_recipients text NOT NULL, + mail_additional_recipients_cc text NOT NULL, + mail_additional_recipients_bcc text NOT NULL, + mail_subject character varying(250) NOT NULL, + mail_template text NOT NULL, + schedule_rrule text, + schedule_rrule_time time without time zone NOT NULL, + schedule_next_run timestamp with time zone, + error_counter integer NOT NULL, + error_last_message text, + timezone character varying(100) NOT NULL, + organizer_id bigint NOT NULL, + owner_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_scheduledorganizerexport OWNER TO pretix; + +-- +-- Name: pretixbase_scheduledorganizerexport_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_scheduledorganizerexport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_scheduledorganizerexport_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_seat; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_seat ( + id bigint NOT NULL, + blocked boolean NOT NULL, + event_id bigint NOT NULL, + product_id bigint, + subevent_id bigint, + seat_guid character varying(190) NOT NULL, + row_name character varying(190) NOT NULL, + seat_number character varying(190) NOT NULL, + zone_name character varying(190) NOT NULL, + sorting_rank bigint NOT NULL, + row_label character varying(190), + seat_label character varying(190), + x double precision, + y double precision +); + + +ALTER TABLE public.pretixbase_seat OWNER TO pretix; + +-- +-- Name: pretixbase_seat_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_seat ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_seat_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_seatcategorymapping; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_seatcategorymapping ( + id bigint NOT NULL, + layout_category character varying(190) NOT NULL, + event_id bigint NOT NULL, + product_id bigint NOT NULL, + subevent_id bigint +); + + +ALTER TABLE public.pretixbase_seatcategorymapping OWNER TO pretix; + +-- +-- Name: pretixbase_seatcategorymapping_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_seatcategorymapping ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_seatcategorymapping_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_seatingplan; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_seatingplan ( + id bigint NOT NULL, + name character varying(190) NOT NULL, + layout text NOT NULL, + organizer_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_seatingplan OWNER TO pretix; + +-- +-- Name: pretixbase_seatingplan_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_seatingplan ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_seatingplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_staffsession; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_staffsession ( + id bigint NOT NULL, + date_start timestamp with time zone NOT NULL, + date_end timestamp with time zone, + session_key character varying(255) NOT NULL, + comment text NOT NULL, + user_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_staffsession OWNER TO pretix; + +-- +-- Name: pretixbase_staffsession_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_staffsession ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_staffsession_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_staffsessionauditlog; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_staffsessionauditlog ( + id bigint NOT NULL, + datetime timestamp with time zone NOT NULL, + url character varying(255) NOT NULL, + session_id bigint NOT NULL, + impersonating_id bigint, + method character varying(255) NOT NULL +); + + +ALTER TABLE public.pretixbase_staffsessionauditlog OWNER TO pretix; + +-- +-- Name: pretixbase_staffsessionauditlog_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_staffsessionauditlog ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_staffsessionauditlog_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_subevent; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_subevent ( + id bigint NOT NULL, + active boolean NOT NULL, + name text NOT NULL, + date_from timestamp with time zone NOT NULL, + date_to timestamp with time zone, + date_admission timestamp with time zone, + presale_end timestamp with time zone, + presale_start timestamp with time zone, + location text, + event_id bigint NOT NULL, + frontpage_text text, + is_public boolean NOT NULL, + seating_plan_id bigint, + geo_lat double precision, + geo_lon double precision, + last_modified timestamp with time zone NOT NULL, + comment text +); + + +ALTER TABLE public.pretixbase_subevent OWNER TO pretix; + +-- +-- Name: pretixbase_subevent_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_subevent ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_subevent_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_subeventitem; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_subeventitem ( + id bigint NOT NULL, + price numeric(13,2), + item_id bigint NOT NULL, + subevent_id bigint NOT NULL, + disabled boolean NOT NULL, + available_from timestamp with time zone, + available_until timestamp with time zone +); + + +ALTER TABLE public.pretixbase_subeventitem OWNER TO pretix; + +-- +-- Name: pretixbase_subeventitem_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_subeventitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_subeventitem_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_subeventitemvariation; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_subeventitemvariation ( + id bigint NOT NULL, + price numeric(13,2), + subevent_id bigint NOT NULL, + variation_id bigint NOT NULL, + disabled boolean NOT NULL, + available_from timestamp with time zone, + available_until timestamp with time zone +); + + +ALTER TABLE public.pretixbase_subeventitemvariation OWNER TO pretix; + +-- +-- Name: pretixbase_subeventitemvariation_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_subeventitemvariation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_subeventitemvariation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_subeventmetavalue; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_subeventmetavalue ( + id bigint NOT NULL, + value text NOT NULL, + property_id bigint NOT NULL, + subevent_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_subeventmetavalue OWNER TO pretix; + +-- +-- Name: pretixbase_subeventmetavalue_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_subeventmetavalue ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_subeventmetavalue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_taxrule; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_taxrule ( + id bigint NOT NULL, + name text NOT NULL, + rate numeric(10,2) NOT NULL, + price_includes_tax boolean NOT NULL, + eu_reverse_charge boolean NOT NULL, + home_country character varying(2) NOT NULL, + event_id bigint NOT NULL, + custom_rules text, + internal_name character varying(190), + keep_gross_if_rate_changes boolean NOT NULL, + code character varying(190) +); + + +ALTER TABLE public.pretixbase_taxrule OWNER TO pretix; + +-- +-- Name: pretixbase_taxrule_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_taxrule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_taxrule_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_team; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_team ( + id bigint NOT NULL, + name character varying(190) NOT NULL, + all_events boolean NOT NULL, + can_create_events boolean NOT NULL, + can_change_teams boolean NOT NULL, + can_change_organizer_settings boolean NOT NULL, + can_change_event_settings boolean NOT NULL, + can_change_items boolean NOT NULL, + can_view_orders boolean NOT NULL, + can_change_orders boolean NOT NULL, + can_view_vouchers boolean NOT NULL, + can_change_vouchers boolean NOT NULL, + organizer_id bigint NOT NULL, + can_manage_gift_cards boolean NOT NULL, + can_checkin_orders boolean NOT NULL, + can_manage_customers boolean NOT NULL, + can_manage_reusable_media boolean NOT NULL, + require_2fa boolean NOT NULL +); + + +ALTER TABLE public.pretixbase_team OWNER TO pretix; + +-- +-- Name: pretixbase_team_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_team ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_team_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_team_limit_events; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_team_limit_events ( + id bigint NOT NULL, + team_id bigint NOT NULL, + event_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_team_limit_events OWNER TO pretix; + +-- +-- Name: pretixbase_team_limit_events_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_team_limit_events ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_team_limit_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_team_members; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_team_members ( + id bigint NOT NULL, + team_id bigint NOT NULL, + user_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_team_members OWNER TO pretix; + +-- +-- Name: pretixbase_team_members_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_team_members ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_team_members_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_teamapitoken; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_teamapitoken ( + id bigint NOT NULL, + name character varying(190) NOT NULL, + active boolean NOT NULL, + token character varying(64) NOT NULL, + team_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_teamapitoken OWNER TO pretix; + +-- +-- Name: pretixbase_teamapitoken_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_teamapitoken ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_teamapitoken_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_teaminvite; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_teaminvite ( + id bigint NOT NULL, + email character varying(254), + token character varying(64), + team_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_teaminvite OWNER TO pretix; + +-- +-- Name: pretixbase_teaminvite_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_teaminvite ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_teaminvite_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_transaction; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_transaction ( + id bigint NOT NULL, + created timestamp with time zone NOT NULL, + datetime timestamp with time zone NOT NULL, + migrated boolean NOT NULL, + positionid integer, + count integer NOT NULL, + price numeric(13,2) NOT NULL, + tax_rate numeric(7,2) NOT NULL, + tax_value numeric(13,2) NOT NULL, + fee_type character varying(100), + internal_type character varying(255), + item_id bigint, + order_id bigint NOT NULL, + subevent_id bigint, + tax_rule_id bigint, + variation_id bigint, + tax_code character varying(190), + CONSTRAINT pretixbase_transaction_positionid_check CHECK ((positionid >= 0)) +); + + +ALTER TABLE public.pretixbase_transaction OWNER TO pretix; + +-- +-- Name: pretixbase_transaction_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_transaction ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_transaction_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_u2fdevice; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_u2fdevice ( + id bigint NOT NULL, + name character varying(64) NOT NULL, + confirmed boolean NOT NULL, + json_data text NOT NULL, + user_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_u2fdevice OWNER TO pretix; + +-- +-- Name: pretixbase_u2fdevice_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_u2fdevice ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_u2fdevice_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_user; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_user ( + id bigint NOT NULL, + password character varying(128) NOT NULL, + last_login timestamp with time zone, + email character varying(190), + is_active boolean NOT NULL, + is_staff boolean NOT NULL, + date_joined timestamp with time zone NOT NULL, + locale character varying(50) NOT NULL, + timezone character varying(100) NOT NULL, + require_2fa boolean NOT NULL, + fullname character varying(255), + notifications_send boolean NOT NULL, + notifications_token character varying(255) NOT NULL, + auth_backend character varying(255) NOT NULL, + session_token character varying(32) NOT NULL, + needs_password_change boolean NOT NULL, + auth_backend_identifier character varying(190) +); + + +ALTER TABLE public.pretixbase_user OWNER TO pretix; + +-- +-- Name: pretixbase_user_groups; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_user_groups ( + id bigint NOT NULL, + user_id bigint NOT NULL, + group_id integer NOT NULL +); + + +ALTER TABLE public.pretixbase_user_groups OWNER TO pretix; + +-- +-- Name: pretixbase_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_user_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_user_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_user_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_user_user_permissions; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_user_user_permissions ( + id bigint NOT NULL, + user_id bigint NOT NULL, + permission_id integer NOT NULL +); + + +ALTER TABLE public.pretixbase_user_user_permissions OWNER TO pretix; + +-- +-- Name: pretixbase_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_user_user_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_userknownloginsource; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_userknownloginsource ( + id bigint NOT NULL, + agent_type character varying(255), + device_type character varying(255), + os_type character varying(255), + country character varying(2), + last_seen timestamp with time zone NOT NULL, + user_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_userknownloginsource OWNER TO pretix; + +-- +-- Name: pretixbase_userknownloginsource_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_userknownloginsource ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_userknownloginsource_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_voucher; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_voucher ( + id bigint NOT NULL, + code character varying(255) NOT NULL, + valid_until timestamp with time zone, + block_quota boolean NOT NULL, + allow_ignore_quota boolean NOT NULL, + value numeric(13,2), + event_id bigint NOT NULL, + item_id bigint, + redeemed integer NOT NULL, + variation_id bigint, + quota_id bigint, + comment text NOT NULL, + tag character varying(255) NOT NULL, + max_usages integer NOT NULL, + price_mode character varying(100) NOT NULL, + subevent_id bigint, + show_hidden_items boolean NOT NULL, + seat_id bigint, + budget numeric(13,2), + min_usages integer NOT NULL, + all_addons_included boolean NOT NULL, + all_bundles_included boolean NOT NULL, + CONSTRAINT pretixbase_voucher_max_usages_check CHECK ((max_usages >= 0)), + CONSTRAINT pretixbase_voucher_min_usages_check CHECK ((min_usages >= 0)), + CONSTRAINT pretixbase_voucher_redeemed_b707d4dd_check CHECK ((redeemed >= 0)) +); + + +ALTER TABLE public.pretixbase_voucher OWNER TO pretix; + +-- +-- Name: pretixbase_voucher_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_voucher ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_voucher_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_waitinglistentry; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_waitinglistentry ( + id bigint NOT NULL, + created timestamp with time zone NOT NULL, + email character varying(254) NOT NULL, + locale character varying(190) NOT NULL, + event_id bigint NOT NULL, + item_id bigint NOT NULL, + variation_id bigint, + voucher_id bigint, + subevent_id bigint, + priority integer NOT NULL, + name_cached character varying(255), + name_parts jsonb NOT NULL, + phone character varying(128) +); + + +ALTER TABLE public.pretixbase_waitinglistentry OWNER TO pretix; + +-- +-- Name: pretixbase_waitinglistentry_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_waitinglistentry ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_waitinglistentry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixbase_webauthndevice; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixbase_webauthndevice ( + id bigint NOT NULL, + name character varying(64) NOT NULL, + confirmed boolean NOT NULL, + credential_id character varying(255), + rp_id character varying(255), + icon_url character varying(255), + ukey text, + pub_key text, + sign_count integer NOT NULL, + user_id bigint NOT NULL +); + + +ALTER TABLE public.pretixbase_webauthndevice OWNER TO pretix; + +-- +-- Name: pretixbase_webauthndevice_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_webauthndevice ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixbase_webauthndevice_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixdroid_checkin_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixbase_checkin ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixdroid_checkin_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixhelpers_thumbnail; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixhelpers_thumbnail ( + id bigint NOT NULL, + source character varying(255) NOT NULL, + size character varying(255) NOT NULL, + thumb character varying(255) NOT NULL, + created timestamp with time zone +); + + +ALTER TABLE public.pretixhelpers_thumbnail OWNER TO pretix; + +-- +-- Name: pretixhelpers_thumbnail_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixhelpers_thumbnail ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixhelpers_thumbnail_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixmultidomain_alternativedomainassignment; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixmultidomain_alternativedomainassignment ( + id bigint NOT NULL, + domain_id character varying(255) NOT NULL, + event_id bigint NOT NULL +); + + +ALTER TABLE public.pretixmultidomain_alternativedomainassignment OWNER TO pretix; + +-- +-- Name: pretixmultidomain_alternativedomainassignment_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.pretixmultidomain_alternativedomainassignment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.pretixmultidomain_alternativedomainassignment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: pretixmultidomain_knowndomain; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.pretixmultidomain_knowndomain ( + domainname character varying(255) NOT NULL, + organizer_id bigint, + event_id bigint, + mode character varying(255) NOT NULL +); + + +ALTER TABLE public.pretixmultidomain_knowndomain OWNER TO pretix; + +-- +-- Name: sendmail_rule; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.sendmail_rule ( + id bigint NOT NULL, + subject text NOT NULL, + template text NOT NULL, + all_products boolean NOT NULL, + send_date timestamp with time zone, + send_offset_days integer, + send_offset_time time without time zone, + date_is_absolute boolean NOT NULL, + offset_to_event_end boolean NOT NULL, + offset_is_after boolean NOT NULL, + send_to character varying(10) NOT NULL, + event_id bigint NOT NULL, + enabled boolean NOT NULL, + attach_ical boolean NOT NULL, + restrict_to_status text NOT NULL, + checked_in_status character varying(10), + subevent_id bigint +); + + +ALTER TABLE public.sendmail_rule OWNER TO pretix; + +-- +-- Name: sendmail_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.sendmail_rule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sendmail_rule_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sendmail_rule_limit_products; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.sendmail_rule_limit_products ( + id bigint NOT NULL, + rule_id bigint NOT NULL, + item_id bigint NOT NULL +); + + +ALTER TABLE public.sendmail_rule_limit_products OWNER TO pretix; + +-- +-- Name: sendmail_rule_limit_products_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.sendmail_rule_limit_products ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sendmail_rule_limit_products_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sendmail_scheduledmail; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.sendmail_scheduledmail ( + id bigint NOT NULL, + last_computed timestamp with time zone NOT NULL, + computed_datetime timestamp with time zone NOT NULL, + state character varying(100) NOT NULL, + last_successful_order_id bigint, + event_id bigint NOT NULL, + rule_id bigint NOT NULL, + subevent_id bigint +); + + +ALTER TABLE public.sendmail_scheduledmail OWNER TO pretix; + +-- +-- Name: sendmail_scheduledmail_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.sendmail_scheduledmail ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sendmail_scheduledmail_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stripe_referencedstripeobject; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.stripe_referencedstripeobject ( + id bigint NOT NULL, + reference character varying(190) NOT NULL, + order_id bigint NOT NULL, + payment_id bigint +); + + +ALTER TABLE public.stripe_referencedstripeobject OWNER TO pretix; + +-- +-- Name: stripe_referencedstripeobject_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.stripe_referencedstripeobject ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stripe_referencedstripeobject_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stripe_registeredapplepaydomain; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.stripe_registeredapplepaydomain ( + id bigint NOT NULL, + domain character varying(190) NOT NULL, + account character varying(190) NOT NULL +); + + +ALTER TABLE public.stripe_registeredapplepaydomain OWNER TO pretix; + +-- +-- Name: stripe_registeredapplepaydomain_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.stripe_registeredapplepaydomain ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stripe_registeredapplepaydomain_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ticketoutputpdf_ticketlayout; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.ticketoutputpdf_ticketlayout ( + id bigint NOT NULL, + "default" boolean NOT NULL, + name character varying(190) NOT NULL, + layout text NOT NULL, + background character varying(255), + event_id bigint NOT NULL +); + + +ALTER TABLE public.ticketoutputpdf_ticketlayout OWNER TO pretix; + +-- +-- Name: ticketoutputpdf_ticketlayout_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.ticketoutputpdf_ticketlayout ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ticketoutputpdf_ticketlayout_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem; Type: TABLE; Schema: public; Owner: pretix +-- + +CREATE TABLE public.ticketoutputpdf_ticketlayoutitem ( + id bigint NOT NULL, + item_id bigint, + layout_id bigint NOT NULL, + sales_channel_id bigint NOT NULL +); + + +ALTER TABLE public.ticketoutputpdf_ticketlayoutitem OWNER TO pretix; + +-- +-- Name: ticketoutputpdf_ticketlayoutitem_id_seq; Type: SEQUENCE; Schema: public; Owner: pretix +-- + +ALTER TABLE public.ticketoutputpdf_ticketlayoutitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ticketoutputpdf_ticketlayoutitem_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.auth_group (id, name) FROM stdin; +\. + + +-- +-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin; +\. + + +-- +-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin; +1 Can add permission 1 add_permission +2 Can change permission 1 change_permission +3 Can delete permission 1 delete_permission +4 Can view permission 1 view_permission +5 Can add group 2 add_group +6 Can change group 2 change_group +7 Can delete group 2 delete_group +8 Can view group 2 view_group +9 Can add content type 3 add_contenttype +10 Can change content type 3 change_contenttype +11 Can delete content type 3 delete_contenttype +12 Can view content type 3 view_contenttype +13 Can add session 4 add_session +14 Can change session 4 change_session +15 Can delete session 4 delete_session +16 Can view session 4 view_session +17 Can add User 5 add_user +18 Can change User 5 change_user +19 Can delete User 5 delete_user +20 Can view User 5 view_user +21 Can add cached file 6 add_cachedfile +22 Can change cached file 6 change_cachedfile +23 Can delete cached file 6 delete_cachedfile +24 Can view cached file 6 view_cachedfile +25 Can add cached ticket 7 add_cachedticket +26 Can change cached ticket 7 change_cachedticket +27 Can delete cached ticket 7 delete_cachedticket +28 Can view cached ticket 7 view_cachedticket +29 Can add Cart position 8 add_cartposition +30 Can change Cart position 8 change_cartposition +31 Can delete Cart position 8 delete_cartposition +32 Can view Cart position 8 view_cartposition +33 Can add Event 9 add_event +34 Can change Event 9 change_event +35 Can delete Event 9 delete_event +36 Can view Event 9 view_event +37 Can add event lock 10 add_eventlock +38 Can change event lock 10 change_eventlock +39 Can delete event lock 10 delete_eventlock +40 Can view event lock 10 view_eventlock +41 Can add Product 11 add_item +42 Can change Product 11 change_item +43 Can delete Product 11 delete_item +44 Can view Product 11 view_item +45 Can add Product category 12 add_itemcategory +46 Can change Product category 12 change_itemcategory +47 Can delete Product category 12 delete_itemcategory +48 Can view Product category 12 view_itemcategory +49 Can add Product variation 13 add_itemvariation +50 Can change Product variation 13 change_itemvariation +51 Can delete Product variation 13 delete_itemvariation +52 Can view Product variation 13 view_itemvariation +53 Can add log entry 14 add_logentry +54 Can change log entry 14 change_logentry +55 Can delete log entry 14 delete_logentry +56 Can view log entry 14 view_logentry +57 Can add Order 15 add_order +58 Can change Order 15 change_order +59 Can delete Order 15 delete_order +60 Can view Order 15 view_order +61 Can add Order position 16 add_orderposition +62 Can change Order position 16 change_orderposition +63 Can delete Order position 16 delete_orderposition +64 Can view Order position 16 view_orderposition +65 Can add Organizer 17 add_organizer +66 Can change Organizer 17 change_organizer +67 Can delete Organizer 17 delete_organizer +68 Can view Organizer 17 view_organizer +69 Can add Question 18 add_question +70 Can change Question 18 change_question +71 Can delete Question 18 delete_question +72 Can view Question 18 view_question +73 Can add question answer 19 add_questionanswer +74 Can change question answer 19 change_questionanswer +75 Can delete question answer 19 delete_questionanswer +76 Can view question answer 19 view_questionanswer +77 Can add Quota 20 add_quota +78 Can change Quota 20 change_quota +79 Can delete Quota 20 delete_quota +80 Can view Quota 20 view_quota +81 Can add Voucher 21 add_voucher +82 Can change Voucher 21 change_voucher +83 Can delete Voucher 21 delete_voucher +84 Can view Voucher 21 view_voucher +85 Can add invoice address 22 add_invoiceaddress +86 Can change invoice address 22 change_invoiceaddress +87 Can delete invoice address 22 delete_invoiceaddress +88 Can view invoice address 22 view_invoiceaddress +89 Can add invoice 23 add_invoice +90 Can change invoice 23 change_invoice +91 Can delete invoice 23 delete_invoice +92 Can view invoice 23 view_invoice +93 Can add invoice line 24 add_invoiceline +94 Can change invoice line 24 change_invoiceline +95 Can delete invoice line 24 delete_invoiceline +96 Can view invoice line 24 view_invoiceline +97 Can add Question option 25 add_questionoption +98 Can change Question option 25 change_questionoption +99 Can delete Question option 25 delete_questionoption +100 Can view Question option 25 view_questionoption +101 Can add u2f device 26 add_u2fdevice +102 Can change u2f device 26 change_u2fdevice +103 Can delete u2f device 26 delete_u2fdevice +104 Can view u2f device 26 view_u2fdevice +105 Can add checkin 27 add_checkin +106 Can change checkin 27 change_checkin +107 Can delete checkin 27 delete_checkin +108 Can view checkin 27 view_checkin +109 Can add cached combined ticket 28 add_cachedcombinedticket +110 Can change cached combined ticket 28 change_cachedcombinedticket +111 Can delete cached combined ticket 28 delete_cachedcombinedticket +112 Can view cached combined ticket 28 view_cachedcombinedticket +113 Can add Waiting list entry 29 add_waitinglistentry +114 Can change Waiting list entry 29 change_waitinglistentry +115 Can delete Waiting list entry 29 delete_waitinglistentry +116 Can view Waiting list entry 29 view_waitinglistentry +117 Can add event_ settings store 30 add_event_settingsstore +118 Can change event_ settings store 30 change_event_settingsstore +119 Can delete event_ settings store 30 delete_event_settingsstore +120 Can view event_ settings store 30 view_event_settingsstore +121 Can add organizer_ settings store 31 add_organizer_settingsstore +122 Can change organizer_ settings store 31 change_organizer_settingsstore +123 Can delete organizer_ settings store 31 delete_organizer_settingsstore +124 Can view organizer_ settings store 31 view_organizer_settingsstore +125 Can add global settings object_ settings store 32 add_globalsettingsobject_settingsstore +126 Can change global settings object_ settings store 32 change_globalsettingsobject_settingsstore +127 Can delete global settings object_ settings store 32 delete_globalsettingsobject_settingsstore +128 Can view global settings object_ settings store 32 view_globalsettingsobject_settingsstore +129 Can add item add on 33 add_itemaddon +130 Can change item add on 33 change_itemaddon +131 Can delete item add on 33 delete_itemaddon +132 Can view item add on 33 view_itemaddon +133 Can add Team 34 add_team +134 Can change Team 34 change_team +135 Can delete Team 34 delete_team +136 Can view Team 34 view_team +137 Can add team invite 35 add_teaminvite +138 Can change team invite 35 change_teaminvite +139 Can delete team invite 35 delete_teaminvite +140 Can view team invite 35 view_teaminvite +141 Can add team api token 36 add_teamapitoken +142 Can change team api token 36 change_teamapitoken +143 Can delete team api token 36 delete_teamapitoken +144 Can view team api token 36 view_teamapitoken +145 Can add Date in event series 37 add_subevent +146 Can change Date in event series 37 change_subevent +147 Can delete Date in event series 37 delete_subevent +148 Can view Date in event series 37 view_subevent +149 Can add sub event item 38 add_subeventitem +150 Can change sub event item 38 change_subeventitem +151 Can delete sub event item 38 delete_subeventitem +152 Can view sub event item 38 view_subeventitem +153 Can add sub event item variation 39 add_subeventitemvariation +154 Can change sub event item variation 39 change_subeventitemvariation +155 Can delete sub event item variation 39 delete_subeventitemvariation +156 Can view sub event item variation 39 view_subeventitemvariation +157 Can add tax rule 40 add_taxrule +158 Can change tax rule 40 change_taxrule +159 Can delete tax rule 40 delete_taxrule +160 Can view tax rule 40 view_taxrule +161 Can add event meta property 41 add_eventmetaproperty +162 Can change event meta property 41 change_eventmetaproperty +163 Can delete event meta property 41 delete_eventmetaproperty +164 Can view event meta property 41 view_eventmetaproperty +165 Can add event meta value 42 add_eventmetavalue +166 Can change event meta value 42 change_eventmetavalue +167 Can delete event meta value 42 delete_eventmetavalue +168 Can view event meta value 42 view_eventmetavalue +169 Can add sub event meta value 43 add_subeventmetavalue +170 Can change sub event meta value 43 change_subeventmetavalue +171 Can delete sub event meta value 43 delete_subeventmetavalue +172 Can view sub event meta value 43 view_subeventmetavalue +173 Can add order fee 44 add_orderfee +174 Can change order fee 44 change_orderfee +175 Can delete order fee 44 delete_orderfee +176 Can view order fee 44 view_orderfee +177 Can add checkin list 45 add_checkinlist +178 Can change checkin list 45 change_checkinlist +179 Can delete checkin list 45 delete_checkinlist +180 Can view checkin list 45 view_checkinlist +181 Can add notification setting 46 add_notificationsetting +182 Can change notification setting 46 change_notificationsetting +183 Can delete notification setting 46 delete_notificationsetting +184 Can view notification setting 46 view_notificationsetting +185 Can add staff session 47 add_staffsession +186 Can change staff session 47 change_staffsession +187 Can delete staff session 47 delete_staffsession +188 Can view staff session 47 view_staffsession +189 Can add staff session audit log 48 add_staffsessionauditlog +190 Can change staff session audit log 48 change_staffsessionauditlog +191 Can delete staff session audit log 48 delete_staffsessionauditlog +192 Can view staff session audit log 48 view_staffsessionauditlog +193 Can add order payment 49 add_orderpayment +194 Can change order payment 49 change_orderpayment +195 Can delete order payment 49 delete_orderpayment +196 Can view order payment 49 view_orderpayment +197 Can add order refund 50 add_orderrefund +198 Can change order refund 50 change_orderrefund +199 Can delete order refund 50 delete_orderrefund +200 Can view order refund 50 view_orderrefund +201 Can add device 51 add_device +202 Can change device 51 change_device +203 Can delete device 51 delete_device +204 Can view device 51 view_device +205 Can add item bundle 52 add_itembundle +206 Can change item bundle 52 change_itembundle +207 Can delete item bundle 52 delete_itembundle +208 Can view item bundle 52 view_itembundle +209 Can add seating plan 53 add_seatingplan +210 Can change seating plan 53 change_seatingplan +211 Can delete seating plan 53 delete_seatingplan +212 Can view seating plan 53 view_seatingplan +213 Can add seat category mapping 54 add_seatcategorymapping +214 Can change seat category mapping 54 change_seatcategorymapping +215 Can delete seat category mapping 54 delete_seatcategorymapping +216 Can view seat category mapping 54 view_seatcategorymapping +217 Can add seat 55 add_seat +218 Can change seat 55 change_seat +219 Can delete seat 55 delete_seat +220 Can view seat 55 view_seat +221 Can add web authn device 56 add_webauthndevice +222 Can change web authn device 56 change_webauthndevice +223 Can delete web authn device 56 delete_webauthndevice +224 Can view web authn device 56 view_webauthndevice +225 Can add gift card 57 add_giftcard +226 Can change gift card 57 change_giftcard +227 Can delete gift card 57 delete_giftcard +228 Can view gift card 57 view_giftcard +229 Can add gift card transaction 58 add_giftcardtransaction +230 Can change gift card transaction 58 change_giftcardtransaction +231 Can delete gift card transaction 58 delete_giftcardtransaction +232 Can view gift card transaction 58 view_giftcardtransaction +233 Can add gift card acceptance 59 add_giftcardacceptance +234 Can change gift card acceptance 59 change_giftcardacceptance +235 Can delete gift card acceptance 59 delete_giftcardacceptance +236 Can view gift card acceptance 59 view_giftcardacceptance +237 Can add item meta property 60 add_itemmetaproperty +238 Can change item meta property 60 change_itemmetaproperty +239 Can delete item meta property 60 delete_itemmetaproperty +240 Can view item meta property 60 view_itemmetaproperty +241 Can add item meta value 61 add_itemmetavalue +242 Can change item meta value 61 change_itemmetavalue +243 Can delete item meta value 61 delete_itemmetavalue +244 Can view item meta value 61 view_itemmetavalue +245 Can add cancellation request 62 add_cancellationrequest +246 Can change cancellation request 62 change_cancellationrequest +247 Can delete cancellation request 62 delete_cancellationrequest +248 Can view cancellation request 62 view_cancellationrequest +249 Can add revoked ticket secret 63 add_revokedticketsecret +250 Can change revoked ticket secret 63 change_revokedticketsecret +251 Can delete revoked ticket secret 63 delete_revokedticketsecret +252 Can view revoked ticket secret 63 view_revokedticketsecret +253 Can add gate 64 add_gate +254 Can change gate 64 change_gate +255 Can delete gate 64 delete_gate +256 Can view gate 64 view_gate +257 Can add customer 65 add_customer +258 Can change customer 65 change_customer +259 Can delete customer 65 delete_customer +260 Can view customer 65 view_customer +261 Can add membership type 66 add_membershiptype +262 Can change membership type 66 change_membershiptype +263 Can delete membership type 66 delete_membershiptype +264 Can view membership type 66 view_membershiptype +265 Can add membership 67 add_membership +266 Can change membership 67 change_membership +267 Can delete membership 67 delete_membership +268 Can view membership 67 view_membership +269 Can add attendee profile 68 add_attendeeprofile +270 Can change attendee profile 68 change_attendeeprofile +271 Can delete attendee profile 68 delete_attendeeprofile +272 Can view attendee profile 68 view_attendeeprofile +273 Can add transaction 69 add_transaction +274 Can change transaction 69 change_transaction +275 Can delete transaction 69 delete_transaction +276 Can view transaction 69 view_transaction +277 Can add discount 70 add_discount +278 Can change discount 70 change_discount +279 Can delete discount 70 delete_discount +280 Can view discount 70 view_discount +281 Can add organizer footer link 71 add_organizerfooterlink +282 Can change organizer footer link 71 change_organizerfooterlink +283 Can delete organizer footer link 71 delete_organizerfooterlink +284 Can view organizer footer link 71 view_organizerfooterlink +285 Can add event footer link 72 add_eventfooterlink +286 Can change event footer link 72 change_eventfooterlink +287 Can delete event footer link 72 delete_eventfooterlink +288 Can view event footer link 72 view_eventfooterlink +289 Can add customer sso provider 73 add_customerssoprovider +290 Can change customer sso provider 73 change_customerssoprovider +291 Can delete customer sso provider 73 delete_customerssoprovider +292 Can view customer sso provider 73 view_customerssoprovider +293 Can add customer sso client 74 add_customerssoclient +294 Can change customer sso client 74 change_customerssoclient +295 Can delete customer sso client 74 delete_customerssoclient +296 Can view customer sso client 74 view_customerssoclient +297 Can add customer sso grant 75 add_customerssogrant +298 Can change customer sso grant 75 change_customerssogrant +299 Can delete customer sso grant 75 delete_customerssogrant +300 Can view customer sso grant 75 view_customerssogrant +301 Can add customer sso access token 76 add_customerssoaccesstoken +302 Can change customer sso access token 76 change_customerssoaccesstoken +303 Can delete customer sso access token 76 delete_customerssoaccesstoken +304 Can view customer sso access token 76 view_customerssoaccesstoken +305 Can add item variation meta value 77 add_itemvariationmetavalue +306 Can change item variation meta value 77 change_itemvariationmetavalue +307 Can delete item variation meta value 77 delete_itemvariationmetavalue +308 Can view item variation meta value 77 view_itemvariationmetavalue +309 Can add scheduled organizer export 78 add_scheduledorganizerexport +310 Can change scheduled organizer export 78 change_scheduledorganizerexport +311 Can delete scheduled organizer export 78 delete_scheduledorganizerexport +312 Can view scheduled organizer export 78 view_scheduledorganizerexport +313 Can add scheduled event export 79 add_scheduledeventexport +314 Can change scheduled event export 79 change_scheduledeventexport +315 Can delete scheduled event export 79 delete_scheduledeventexport +316 Can view scheduled event export 79 view_scheduledeventexport +317 Can add blocked ticket secret 80 add_blockedticketsecret +318 Can change blocked ticket secret 80 change_blockedticketsecret +319 Can delete blocked ticket secret 80 delete_blockedticketsecret +320 Can view blocked ticket secret 80 view_blockedticketsecret +321 Can add exchange rate 81 add_exchangerate +322 Can change exchange rate 81 change_exchangerate +323 Can delete exchange rate 81 delete_exchangerate +324 Can view exchange rate 81 view_exchangerate +325 Can add reusable medium 82 add_reusablemedium +326 Can change reusable medium 82 change_reusablemedium +327 Can delete reusable medium 82 delete_reusablemedium +328 Can view reusable medium 82 view_reusablemedium +329 Can add medium key set 83 add_mediumkeyset +330 Can change medium key set 83 change_mediumkeyset +331 Can delete medium key set 83 delete_mediumkeyset +332 Can view medium key set 83 view_mediumkeyset +333 Can add user known login source 84 add_userknownloginsource +334 Can change user known login source 84 change_userknownloginsource +335 Can delete user known login source 84 delete_userknownloginsource +336 Can view user known login source 84 view_userknownloginsource +337 Can add sales channel 85 add_saleschannel +338 Can change sales channel 85 change_saleschannel +339 Can delete sales channel 85 delete_saleschannel +340 Can view sales channel 85 view_saleschannel +341 Can add historic password 86 add_historicpassword +342 Can change historic password 86 change_historicpassword +343 Can delete historic password 86 delete_historicpassword +344 Can view historic password 86 view_historicpassword +345 Can add print log 87 add_printlog +346 Can change print log 87 change_printlog +347 Can delete print log 87 delete_printlog +348 Can view print log 87 view_printlog +349 Can add Known domain 88 add_knowndomain +350 Can change Known domain 88 change_knowndomain +351 Can delete Known domain 88 delete_knowndomain +352 Can view Known domain 88 view_knowndomain +353 Can add alternative domain assignment 89 add_alternativedomainassignment +354 Can change alternative domain assignment 89 change_alternativedomainassignment +355 Can delete alternative domain assignment 89 delete_alternativedomainassignment +356 Can view alternative domain assignment 89 view_alternativedomainassignment +357 Can add o auth access token 90 add_oauthaccesstoken +358 Can change o auth access token 90 change_oauthaccesstoken +359 Can delete o auth access token 90 delete_oauthaccesstoken +360 Can view o auth access token 90 view_oauthaccesstoken +361 Can add o auth application 91 add_oauthapplication +362 Can change o auth application 91 change_oauthapplication +363 Can delete o auth application 91 delete_oauthapplication +364 Can view o auth application 91 view_oauthapplication +365 Can add o auth grant 92 add_oauthgrant +366 Can change o auth grant 92 change_oauthgrant +367 Can delete o auth grant 92 delete_oauthgrant +368 Can view o auth grant 92 view_oauthgrant +369 Can add o auth refresh token 93 add_oauthrefreshtoken +370 Can change o auth refresh token 93 change_oauthrefreshtoken +371 Can delete o auth refresh token 93 delete_oauthrefreshtoken +372 Can view o auth refresh token 93 view_oauthrefreshtoken +373 Can add web hook 94 add_webhook +374 Can change web hook 94 change_webhook +375 Can delete web hook 94 delete_webhook +376 Can view web hook 94 view_webhook +377 Can add web hook call 95 add_webhookcall +378 Can change web hook call 95 change_webhookcall +379 Can delete web hook call 95 delete_webhookcall +380 Can view web hook call 95 view_webhookcall +381 Can add web hook event listener 96 add_webhookeventlistener +382 Can change web hook event listener 96 change_webhookeventlistener +383 Can delete web hook event listener 96 delete_webhookeventlistener +384 Can view web hook event listener 96 view_webhookeventlistener +385 Can add api call 97 add_apicall +386 Can change api call 97 change_apicall +387 Can delete api call 97 delete_apicall +388 Can view api call 97 view_apicall +389 Can add web hook call retry 98 add_webhookcallretry +390 Can change web hook call retry 98 change_webhookcallretry +391 Can delete web hook call retry 98 delete_webhookcallretry +392 Can view web hook call retry 98 view_webhookcallretry +393 Can add o auth id token 99 add_oauthidtoken +394 Can change o auth id token 99 change_oauthidtoken +395 Can delete o auth id token 99 delete_oauthidtoken +396 Can view o auth id token 99 view_oauthidtoken +397 Can add thumbnail 100 add_thumbnail +398 Can change thumbnail 100 change_thumbnail +399 Can delete thumbnail 100 delete_thumbnail +400 Can view thumbnail 100 view_thumbnail +401 Can add bank import job 101 add_bankimportjob +402 Can change bank import job 101 change_bankimportjob +403 Can delete bank import job 101 delete_bankimportjob +404 Can view bank import job 101 view_bankimportjob +405 Can add bank transaction 102 add_banktransaction +406 Can change bank transaction 102 change_banktransaction +407 Can delete bank transaction 102 delete_banktransaction +408 Can view bank transaction 102 view_banktransaction +409 Can add refund export 103 add_refundexport +410 Can change refund export 103 change_refundexport +411 Can delete refund export 103 delete_refundexport +412 Can view refund export 103 view_refundexport +413 Can add referenced stripe object 104 add_referencedstripeobject +414 Can change referenced stripe object 104 change_referencedstripeobject +415 Can delete referenced stripe object 104 delete_referencedstripeobject +416 Can view referenced stripe object 104 view_referencedstripeobject +417 Can add registered apple pay domain 105 add_registeredapplepaydomain +418 Can change registered apple pay domain 105 change_registeredapplepaydomain +419 Can delete registered apple pay domain 105 delete_registeredapplepaydomain +420 Can view registered apple pay domain 105 view_registeredapplepaydomain +421 Can add referenced pay pal object 106 add_referencedpaypalobject +422 Can change referenced pay pal object 106 change_referencedpaypalobject +423 Can delete referenced pay pal object 106 delete_referencedpaypalobject +424 Can view referenced pay pal object 106 view_referencedpaypalobject +425 Can add ticket layout 107 add_ticketlayout +426 Can change ticket layout 107 change_ticketlayout +427 Can delete ticket layout 107 delete_ticketlayout +428 Can view ticket layout 107 view_ticketlayout +429 Can add ticket layout item 108 add_ticketlayoutitem +430 Can change ticket layout item 108 change_ticketlayoutitem +431 Can delete ticket layout item 108 delete_ticketlayoutitem +432 Can view ticket layout item 108 view_ticketlayoutitem +433 Can add rule 109 add_rule +434 Can change rule 109 change_rule +435 Can delete rule 109 delete_rule +436 Can view rule 109 view_rule +437 Can add scheduled mail 110 add_scheduledmail +438 Can change scheduled mail 110 change_scheduledmail +439 Can delete scheduled mail 110 delete_scheduledmail +440 Can view scheduled mail 110 view_scheduledmail +441 Can add badge item 111 add_badgeitem +442 Can change badge item 111 change_badgeitem +443 Can delete badge item 111 delete_badgeitem +444 Can view badge item 111 view_badgeitem +445 Can add badge layout 112 add_badgelayout +446 Can change badge layout 112 change_badgelayout +447 Can delete badge layout 112 delete_badgelayout +448 Can view badge layout 112 view_badgelayout +449 Can add auto checkin rule 113 add_autocheckinrule +450 Can change auto checkin rule 113 change_autocheckinrule +451 Can delete auto checkin rule 113 delete_autocheckinrule +452 Can view auto checkin rule 113 view_autocheckinrule +453 Can add TOTP device 114 add_totpdevice +454 Can change TOTP device 114 change_totpdevice +455 Can delete TOTP device 114 delete_totpdevice +456 Can view TOTP device 114 view_totpdevice +457 Can add static device 115 add_staticdevice +458 Can change static device 115 change_staticdevice +459 Can delete static device 115 delete_staticdevice +460 Can view static device 115 view_staticdevice +461 Can add static token 116 add_statictoken +462 Can change static token 116 change_statictoken +463 Can delete static token 116 delete_statictoken +464 Can view static token 116 view_statictoken +\. + + +-- +-- Data for Name: autocheckin_autocheckinrule; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.autocheckin_autocheckinrule (id, mode, all_sales_channels, all_products, all_payment_methods, limit_payment_methods, event_id, list_id) FROM stdin; +\. + + +-- +-- Data for Name: autocheckin_autocheckinrule_limit_products; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.autocheckin_autocheckinrule_limit_products (id, autocheckinrule_id, item_id) FROM stdin; +\. + + +-- +-- Data for Name: autocheckin_autocheckinrule_limit_sales_channels; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.autocheckin_autocheckinrule_limit_sales_channels (id, autocheckinrule_id, saleschannel_id) FROM stdin; +\. + + +-- +-- Data for Name: autocheckin_autocheckinrule_limit_variations; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.autocheckin_autocheckinrule_limit_variations (id, autocheckinrule_id, itemvariation_id) FROM stdin; +\. + + +-- +-- Data for Name: badges_badgeitem; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.badges_badgeitem (id, item_id, layout_id) FROM stdin; +\. + + +-- +-- Data for Name: badges_badgelayout; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.badges_badgelayout (id, "default", name, layout, background, event_id) FROM stdin; +\. + + +-- +-- Data for Name: banktransfer_bankimportjob; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.banktransfer_bankimportjob (id, created, state, event_id, organizer_id, currency) FROM stdin; +\. + + +-- +-- Data for Name: banktransfer_banktransaction; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.banktransfer_banktransaction (id, state, message, checksum, payer, reference, amount, date, event_id, import_job_id, order_id, comment, organizer_id, bic, date_parsed, iban, currency, external_id) FROM stdin; +\. + + +-- +-- Data for Name: banktransfer_refundexport; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.banktransfer_refundexport (id, datetime, testmode, rows, event_id, organizer_id, downloaded, currency) FROM stdin; +\. + + +-- +-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.django_content_type (id, app_label, model) FROM stdin; +1 auth permission +2 auth group +3 contenttypes contenttype +4 sessions session +5 pretixbase user +6 pretixbase cachedfile +7 pretixbase cachedticket +8 pretixbase cartposition +9 pretixbase event +10 pretixbase eventlock +11 pretixbase item +12 pretixbase itemcategory +13 pretixbase itemvariation +14 pretixbase logentry +15 pretixbase order +16 pretixbase orderposition +17 pretixbase organizer +18 pretixbase question +19 pretixbase questionanswer +20 pretixbase quota +21 pretixbase voucher +22 pretixbase invoiceaddress +23 pretixbase invoice +24 pretixbase invoiceline +25 pretixbase questionoption +26 pretixbase u2fdevice +27 pretixbase checkin +28 pretixbase cachedcombinedticket +29 pretixbase waitinglistentry +30 pretixbase event_settingsstore +31 pretixbase organizer_settingsstore +32 pretixbase globalsettingsobject_settingsstore +33 pretixbase itemaddon +34 pretixbase team +35 pretixbase teaminvite +36 pretixbase teamapitoken +37 pretixbase subevent +38 pretixbase subeventitem +39 pretixbase subeventitemvariation +40 pretixbase taxrule +41 pretixbase eventmetaproperty +42 pretixbase eventmetavalue +43 pretixbase subeventmetavalue +44 pretixbase orderfee +45 pretixbase checkinlist +46 pretixbase notificationsetting +47 pretixbase staffsession +48 pretixbase staffsessionauditlog +49 pretixbase orderpayment +50 pretixbase orderrefund +51 pretixbase device +52 pretixbase itembundle +53 pretixbase seatingplan +54 pretixbase seatcategorymapping +55 pretixbase seat +56 pretixbase webauthndevice +57 pretixbase giftcard +58 pretixbase giftcardtransaction +59 pretixbase giftcardacceptance +60 pretixbase itemmetaproperty +61 pretixbase itemmetavalue +62 pretixbase cancellationrequest +63 pretixbase revokedticketsecret +64 pretixbase gate +65 pretixbase customer +66 pretixbase membershiptype +67 pretixbase membership +68 pretixbase attendeeprofile +69 pretixbase transaction +70 pretixbase discount +71 pretixbase organizerfooterlink +72 pretixbase eventfooterlink +73 pretixbase customerssoprovider +74 pretixbase customerssoclient +75 pretixbase customerssogrant +76 pretixbase customerssoaccesstoken +77 pretixbase itemvariationmetavalue +78 pretixbase scheduledorganizerexport +79 pretixbase scheduledeventexport +80 pretixbase blockedticketsecret +81 pretixbase exchangerate +82 pretixbase reusablemedium +83 pretixbase mediumkeyset +84 pretixbase userknownloginsource +85 pretixbase saleschannel +86 pretixbase historicpassword +87 pretixbase printlog +88 pretixmultidomain knowndomain +89 pretixmultidomain alternativedomainassignment +90 pretixapi oauthaccesstoken +91 pretixapi oauthapplication +92 pretixapi oauthgrant +93 pretixapi oauthrefreshtoken +94 pretixapi webhook +95 pretixapi webhookcall +96 pretixapi webhookeventlistener +97 pretixapi apicall +98 pretixapi webhookcallretry +99 pretixapi oauthidtoken +100 pretixhelpers thumbnail +101 banktransfer bankimportjob +102 banktransfer banktransaction +103 banktransfer refundexport +104 stripe referencedstripeobject +105 stripe registeredapplepaydomain +106 paypal referencedpaypalobject +107 ticketoutputpdf ticketlayout +108 ticketoutputpdf ticketlayoutitem +109 sendmail rule +110 sendmail scheduledmail +111 badges badgeitem +112 badges badgelayout +113 autocheckin autocheckinrule +114 otp_totp totpdevice +115 otp_static staticdevice +116 otp_static statictoken +\. + + +-- +-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.django_migrations (id, app, name, applied) FROM stdin; +1 contenttypes 0001_initial 2025-01-07 12:08:12.644579+00 +2 contenttypes 0002_remove_content_type_name 2025-01-07 12:08:12.652059+00 +3 auth 0001_initial 2025-01-07 12:08:12.674186+00 +4 auth 0002_alter_permission_name_max_length 2025-01-07 12:08:12.680055+00 +5 auth 0003_alter_user_email_max_length 2025-01-07 12:08:12.685997+00 +6 auth 0004_alter_user_username_opts 2025-01-07 12:08:12.692015+00 +7 auth 0005_alter_user_last_login_null 2025-01-07 12:08:12.697708+00 +8 auth 0006_require_contenttypes_0002 2025-01-07 12:08:12.700119+00 +9 auth 0007_alter_validators_add_error_messages 2025-01-07 12:08:12.706545+00 +10 auth 0008_alter_user_username_max_length 2025-01-07 12:08:12.713856+00 +11 auth 0009_alter_user_last_name_max_length 2025-01-07 12:08:12.72063+00 +12 auth 0010_alter_group_name_max_length 2025-01-07 12:08:12.72903+00 +13 auth 0011_update_proxy_permissions 2025-01-07 12:08:12.73764+00 +14 auth 0012_alter_user_first_name_max_length 2025-01-07 12:08:12.744391+00 +15 pretixbase 0001_initial 2025-01-07 12:08:14.117472+00 +16 pretixbase 0002_auto_20160209_0940 2025-01-07 12:08:14.119627+00 +17 pretixbase 0003_eventpermission_can_change_vouchers 2025-01-07 12:08:14.12145+00 +18 pretixbase 0004_auto_20160209_1023 2025-01-07 12:08:14.123343+00 +19 pretixbase 0005_auto_20160211_1459 2025-01-07 12:08:14.125519+00 +20 pretixbase 0006_auto_20160211_1630 2025-01-07 12:08:14.127378+00 +21 pretixbase 0007_auto_20160211_1710 2025-01-07 12:08:14.129592+00 +22 pretixbase 0008_invoiceaddress 2025-01-07 12:08:14.132102+00 +23 pretixbase 0009_auto_20160222_2002 2025-01-07 12:08:14.134155+00 +24 pretixbase 0010_orderposition_secret 2025-01-07 12:08:14.135904+00 +25 pretixbase 0011_auto_20160311_2052 2025-01-07 12:08:14.137715+00 +26 pretixbase 0012_auto_20160312_1040 2025-01-07 12:08:14.139462+00 +27 pretixbase 0013_invoice_locale 2025-01-07 12:08:14.141142+00 +28 pretixbase 0014_invoice_additional_text 2025-01-07 12:08:14.142883+00 +29 pretixbase 0015_auto_20160312_1924 2025-01-07 12:08:14.144565+00 +30 pretixbase 0016_voucher_variation 2025-01-07 12:08:14.146358+00 +31 pretixbase 0017_auto_20160324_1615 2025-01-07 12:08:14.148582+00 +32 pretixbase 0018_auto_20160326_1104 2025-01-07 12:08:14.150941+00 +33 pretixbase 0019_auto_20160326_1139 2025-01-07 12:08:14.153953+00 +34 pretixbase 0020_auto_20160418_2106 2025-01-07 12:08:14.157033+00 +35 pretixbase 0021_auto_20160418_2117 2025-01-07 12:08:14.159449+00 +36 pretixbase 0020_auto_20160421_1943 2025-01-07 12:08:14.161218+00 +37 pretixbase 0022_merge 2025-01-07 12:08:14.163164+00 +38 pretixbase 0023_auto_20160601_1039 2025-01-07 12:08:14.16541+00 +39 pretixbase 0024_auto_20160728_1725 2025-01-07 12:08:14.167384+00 +40 pretixbase 0025_auto_20160802_2202 2025-01-07 12:08:14.169378+00 +41 pretixbase 0026_order_comment 2025-01-07 12:08:14.171199+00 +42 pretixbase 0027_auto_20160815_1254 2025-01-07 12:08:14.173059+00 +43 pretixbase 0028_auto_20160816_1242 2025-01-07 12:08:14.175039+00 +44 pretixbase 0028_invoice_invoice_no_charfield 2025-01-07 12:08:14.195375+00 +45 pretixbase 0029_invoice_no_data 2025-01-07 12:08:14.222213+00 +46 pretixbase 0030_auto_20160816_0646 2025-01-07 12:08:14.261183+00 +47 pretixbase 0031_auto_20160816_0648 2025-01-07 12:08:15.045415+00 +48 pretixbase 0032_question_position 2025-01-07 12:08:15.047139+00 +49 pretixbase 0033_auto_20160821_2222 2025-01-07 12:08:15.048886+00 +50 pretixbase 0034_auto_20160830_1952 2025-01-07 12:08:15.051248+00 +51 pretixbase 0032_item_allow_cancel 2025-01-07 12:08:15.052968+00 +52 pretixbase 0033_auto_20160822_1044 2025-01-07 12:08:15.054434+00 +53 pretixbase 0035_merge 2025-01-07 12:08:15.055959+00 +54 pretixbase 0036_auto_20160902_0755 2025-01-07 12:08:15.057534+00 +55 pretixbase 0037_invoice_payment_provider_text 2025-01-07 12:08:15.058996+00 +56 pretixbase 0038_auto_20160924_1448 2025-01-07 12:08:15.060446+00 +57 pretixbase 0039_user_require_2fa 2025-01-07 12:08:15.061934+00 +58 pretixbase 0040_u2fdevice 2025-01-07 12:08:15.063365+00 +59 pretixbase 0041_auto_20161018_1654 2025-01-07 12:08:15.064926+00 +60 pretixbase 0042_order_expires 2025-01-07 12:08:15.066366+00 +61 pretixbase 0043_globalsetting 2025-01-07 12:08:15.067996+00 +62 pretixbase 0044_auto_20161101_1610 2025-01-07 12:08:15.070248+00 +63 pretixbase 0045_auto_20161108_1542 2025-01-07 12:08:15.072833+00 +64 pretixbase 0046_order_meta_info 2025-01-07 12:08:15.075083+00 +65 pretixbase 0047_auto_20161126_1300 2025-01-07 12:08:15.077337+00 +66 pretixbase 0048_auto_20161129_1330 2025-01-07 12:08:15.078891+00 +67 pretixdroid 0001_initial 2025-01-07 12:08:15.104076+00 +68 pretixdroid 0002_auto_20161208_1644 2025-01-07 12:08:15.115901+00 +69 pretixbase 0049_checkin 2025-01-07 12:08:15.138505+00 +70 pretixbase 0050_orderposition_positionid 2025-01-07 12:08:15.613054+00 +71 pretixbase 0051_auto_20161221_1720 2025-01-07 12:08:15.615386+00 +72 pretixbase 0052_auto_20161231_1533 2025-01-07 12:08:15.617276+00 +73 pretixbase 0053_auto_20170104_1252 2025-01-07 12:08:15.619264+00 +74 pretixbase 0054_auto_20170107_1058 2025-01-07 12:08:15.621318+00 +75 pretixbase 0055_organizerpermission_can_change_permissions 2025-01-07 12:08:15.623147+00 +76 pretixbase 0056_auto_20170107_1251 2025-01-07 12:08:15.625198+00 +77 pretixbase 0057_auto_20170107_1531 2025-01-07 12:08:15.627994+00 +78 pretixbase 0058_auto_20170107_1533 2025-01-07 12:08:15.630242+00 +79 pretixbase 0059_cachedcombinedticket 2025-01-07 12:08:15.632374+00 +80 pretixbase 0060_auto_20170113_1438 2025-01-07 12:08:15.63682+00 +81 pretixbase 0061_event_location 2025-01-07 12:08:15.639355+00 +82 pretixbase 0051_auto_20170206_2027 2025-01-07 12:08:16.658254+00 +83 pretixbase 0052_auto_20170324_1506 2025-01-07 12:08:16.660825+00 +84 pretixbase 0053_auto_20170409_1651 2025-01-07 12:08:16.662951+00 +85 pretixbase 0054_auto_20170413_1050 2025-01-07 12:08:16.665096+00 +86 pretixbase 0055_auto_20170413_1537 2025-01-07 12:08:16.667716+00 +87 pretixbase 0056_auto_20170414_1044 2025-01-07 12:08:16.670201+00 +88 pretixbase 0057_auto_20170501_2116 2025-01-07 12:08:16.672425+00 +89 pretixbase 0052_team_teaminvite 2025-01-07 12:08:18.306946+00 +90 pretixbase 0058_auto_20170429_1020 2025-01-07 12:08:18.309421+00 +91 pretixbase 0059_checkin_nonce 2025-01-07 12:08:18.311348+00 +92 pretixbase 0060_auto_20170510_1027 2025-01-07 12:08:18.31335+00 +93 pretixbase 0061_auto_20170521_0942 2025-01-07 12:08:18.315485+00 +94 pretixbase 0062_auto_20170602_0948 2025-01-07 12:08:18.318222+00 +95 pretixbase 0063_auto_20170702_1711 2025-01-07 12:08:18.320307+00 +96 pretixbase 0064_auto_20170703_0912 2025-01-07 12:08:18.322201+00 +97 pretixbase 0065_auto_20170707_0920 2025-01-07 12:08:18.324116+00 +98 pretixbase 0066_auto_20170708_2102 2025-01-07 12:08:18.325991+00 +99 pretixbase 0067_auto_20170712_1610 2025-01-07 12:08:18.327853+00 +100 pretixbase 0068_subevent_frontpage_text 2025-01-07 12:08:18.329801+00 +101 pretixbase 0069_invoice_prefix 2025-01-07 12:08:18.331957+00 +102 pretixbase 0070_auto_20170719_0910 2025-01-07 12:08:18.334004+00 +103 pretixbase 0071_auto_20170729_1616 2025-01-07 12:08:19.108445+00 +104 pretixbase 0072_order_download_reminder_sent 2025-01-07 12:08:19.110883+00 +105 pretixbase 0073_auto_20170716_1333 2025-01-07 12:08:19.113196+00 +106 pretixbase 0074_auto_20170825_1258 2025-01-07 12:08:19.115351+00 +107 pretixbase 0075_auto_20170828_0901 2025-01-07 12:08:19.1173+00 +108 pretixbase 0076_orderfee 2025-01-07 12:08:19.864341+00 +109 pretixbase 0077_auto_20170829_1126 2025-01-07 12:08:19.866519+00 +110 pretixbase 0078_auto_20171003_1650 2025-01-07 12:08:19.868488+00 +111 pretixbase 0079_auto_20171010_2117 2025-01-07 12:08:19.870352+00 +112 pretixbase 0080_auto_20171016_1553 2025-01-07 12:08:19.872086+00 +113 pretixbase 0081_quota_cached_availability_paid_orders 2025-01-07 12:08:19.873786+00 +114 pretixbase 0082_invoiceaddress_internal_reference 2025-01-07 12:08:19.875311+00 +115 pretixbase 0077_auto_20171124_1629 2025-01-07 12:08:21.644853+00 +116 pretixbase 0078_auto_20171206_1603 2025-01-07 12:08:21.647357+00 +117 pretixbase 0079_auto_20180115_0855 2025-01-07 12:08:21.649686+00 +118 pretixbase 0080_question_ask_during_checkin 2025-01-07 12:08:21.651915+00 +119 pretixbase 0081_auto_20180220_1031 2025-01-07 12:08:21.654104+00 +120 pretixbase 0082_auto_20180222_0938 2025-01-07 12:08:21.656204+00 +121 pretixbase 0083_auto_20180228_2102 2025-01-07 12:08:21.658236+00 +122 pretixbase 0084_questionoption_position 2025-01-07 12:08:21.660274+00 +123 pretixbase 0085_auto_20180312_1119 2025-01-07 12:08:21.662202+00 +124 pretixbase 0086_auto_20180320_1219 2025-01-07 12:08:21.665063+00 +125 pretixbase 0087_auto_20180317_1952 2025-01-07 12:08:21.667419+00 +126 pretixbase 0088_auto_20180328_1217 2025-01-07 12:08:21.669902+00 +127 pretixapi 0001_initial 2025-01-07 12:08:22.27597+00 +128 pretixbase 0089_auto_20180315_1322 2025-01-07 12:08:22.345456+00 +129 pretixbase 0090_auto_20180509_0917 2025-01-07 12:08:22.632049+00 +130 pretixbase 0091_auto_20180513_1641 2025-01-07 12:08:22.634259+00 +131 pretixbase 0092_auto_20180511_1224 2025-01-07 12:08:22.636383+00 +132 pretixbase 0093_auto_20180528_1432 2025-01-07 12:08:22.6384+00 +133 pretixbase 0094_auto_20180604_1119 2025-01-07 12:08:22.640407+00 +134 pretixbase 0095_auto_20180604_1129 2025-01-07 12:08:22.642443+00 +135 pretixbase 0096_auto_20180722_0801 2025-01-07 12:08:22.962303+00 +136 pretixbase 0097_auto_20180722_0804 2025-01-07 12:08:23.210488+00 +137 pretixbase 0098_auto_20180731_1243 2025-01-07 12:08:23.942768+00 +138 pretixbase 0099_auto_20180807_0841 2025-01-07 12:08:23.945869+00 +139 pretixbase 0100_item_require_approval 2025-01-07 12:08:23.949261+00 +140 pretixbase 0099_auto_20180912_1035 2025-01-07 12:08:24.110724+00 +141 pretixbase 0100_auto_20181023_2300 2025-01-07 12:08:24.693616+00 +142 pretixbase 0101_auto_20181025_2255 2025-01-07 12:08:24.747487+00 +143 pretixbase 0102_auto_20181017_0024 2025-01-07 12:08:25.139213+00 +144 pretixbase 0103_auto_20181121_1224 2025-01-07 12:08:25.234353+00 +145 pretixbase 0104_auto_20181114_1526 2025-01-07 12:08:25.609654+00 +146 pretixbase 0105_auto_20190112_1512 2025-01-07 12:08:25.814554+00 +147 pretixbase 0106_auto_20190118_1527 2025-01-07 12:08:25.816503+00 +148 pretixbase 0107_auto_20190129_1337 2025-01-07 12:08:25.818303+00 +149 pretixbase 0108_auto_20190201_1527 2025-01-07 12:08:31.092509+00 +150 pretixbase 0109_auto_20190208_1432 2025-01-07 12:08:31.095413+00 +151 pretixbase 0110_auto_20190219_1245 2025-01-07 12:08:31.098204+00 +152 pretixbase 0111_auto_20190219_0949 2025-01-07 12:08:31.101037+00 +153 pretixbase 0112_auto_20190304_1726 2025-01-07 12:08:31.10387+00 +154 pretixbase 0113_auto_20190312_0942 2025-01-07 12:08:31.106492+00 +155 pretixbase 0114_auto_20190316_1014 2025-01-07 12:08:31.10905+00 +156 pretixbase 0115_auto_20190323_2238 2025-01-07 12:08:31.1118+00 +157 pretixbase 0116_auto_20190402_0722 2025-01-07 12:08:31.114515+00 +158 pretixbase 0117_auto_20190418_1149 2025-01-07 12:08:31.117154+00 +159 pretixbase 0118_auto_20190423_0839 2025-01-07 12:08:31.12096+00 +160 pretixbase 0119_auto_20190509_0654 2025-01-07 12:08:31.12484+00 +161 pretixbase 0120_auto_20190509_0736 2025-01-07 12:08:31.128477+00 +162 pretixbase 0121_order_email_known_to_work 2025-01-07 12:08:31.131655+00 +163 pretixbase 0122_orderposition_web_secret 2025-01-07 12:08:31.134676+00 +164 pretixbase 0123_auto_20190530_1035 2025-01-07 12:08:31.137451+00 +165 pretixbase 0124_seat_seat_guid 2025-01-07 12:08:31.140186+00 +166 pretixbase 0125_voucher_show_hidden_items 2025-01-07 12:08:31.142957+00 +167 pretixbase 0126_item_show_quota_left 2025-01-07 12:08:31.145793+00 +168 pretixbase 0127_auto_20190711_0705 2025-01-07 12:08:31.148592+00 +169 pretixbase 0128_auto_20190715_1510 2025-01-07 12:08:31.151402+00 +170 pretixbase 0129_auto_20190724_1548 2025-01-07 12:08:31.154113+00 +171 pretixbase 0130_auto_20190729_1311 2025-01-07 12:08:31.156884+00 +172 pretixbase 0131_auto_20190729_1422 2025-01-07 12:08:31.159533+00 +173 pretixbase 0132_auto_20190808_1253 2025-01-07 12:08:31.162313+00 +174 pretixbase 0133_auto_20190830_1513 2025-01-07 12:08:31.165116+00 +175 pretixbase 0134_auto_20190909_1042 2025-01-07 12:08:31.167954+00 +176 pretixbase 0135_auto_20191007_0803 2025-01-07 12:08:31.170926+00 +177 pretixbase 0136_auto_20190918_1742 2025-01-07 12:08:31.174494+00 +178 pretixbase 0137_auto_20191015_1141 2025-01-07 12:08:31.178578+00 +179 pretixbase 0138_auto_20191017_1151 2025-01-07 12:08:31.182515+00 +180 pretixbase 0139_auto_20191019_1317 2025-01-07 12:08:31.185426+00 +181 pretixbase 0140_voucher_seat 2025-01-07 12:08:31.188123+00 +182 pretixbase 0141_seat_sorting_rank 2025-01-07 12:08:31.190831+00 +183 pretixbase 0142_auto_20191215_1522 2025-01-07 12:08:31.369902+00 +184 pretixbase 0143_auto_20200217_1211 2025-01-07 12:08:31.535577+00 +185 pretixbase 0144_invoiceaddress_custom_field 2025-01-07 12:08:31.624039+00 +186 pretixbase 0145_auto_20200210_1038 2025-01-07 12:08:31.802125+00 +187 pretixbase 0146_giftcardtransaction_text 2025-01-07 12:08:31.834436+00 +188 pretixbase 0147_user_session_token 2025-01-07 12:08:31.853206+00 +189 pretixbase 0148_cancellationrequest 2025-01-07 12:08:31.935165+00 +190 pretixbase 0149_order_cancellation_date 2025-01-07 12:08:32.090992+00 +191 pretixbase 0150_auto_20200401_1123 2025-01-07 12:08:33.150558+00 +192 pretixbase 0151_auto_20200421_0737 2025-01-07 12:08:33.241437+00 +193 pretixbase 0152_auto_20200511_1504 2025-01-07 12:08:33.587776+00 +194 pretixbase 0153_auto_20200528_1953 2025-01-07 12:08:33.759485+00 +195 pretixbase 0154_auto_20200620_1633 2025-01-07 12:08:33.867631+00 +196 pretixbase 0155_quota_release_after_exit 2025-01-07 12:08:33.924511+00 +197 pretixbase 0156_cartposition_override_tax_rate 2025-01-07 12:08:33.982733+00 +198 pretixbase 0157_auto_20200712_0932 2025-01-07 12:08:34.020587+00 +199 pretixbase 0158_auto_20200724_0754 2025-01-07 12:08:34.255778+00 +200 pretixbase 0159_mails_by_sales_channel 2025-01-07 12:08:34.303741+00 +201 pretixbase 0160_multiple_confirm_texts 2025-01-07 12:08:34.351804+00 +202 pretixbase 0161_order_changes_retain_old_default 2025-01-07 12:08:34.402319+00 +203 pretixbase 0162_remove_seat_name 2025-01-07 12:08:34.438207+00 +204 pretixbase 0163_device_security_profile 2025-01-07 12:08:34.464836+00 +205 pretixbase 0164_subevent_last_modified 2025-01-07 12:08:34.503575+00 +206 pretixbase 0165_auto_20201015_1924 2025-01-07 12:08:34.594879+00 +207 pretixbase 0166_auto_20201015_2029 2025-01-07 12:08:34.639025+00 +208 pretixbase 0167_checkinlist_exit_all_at 2025-01-07 12:08:34.680445+00 +209 pretixbase 0168_auto_20201023_1447 2025-01-07 12:08:35.125088+00 +210 pretixbase 0169_checkinlist_gates 2025-01-07 12:08:35.180707+00 +211 pretixbase 0170_remove_hidden_urls 2025-01-07 12:08:35.257814+00 +212 pretixbase 0171_auto_20201126_1635 2025-01-07 12:08:35.560869+00 +213 pretixbase 0172_event_sales_channels 2025-01-07 12:08:35.597483+00 +214 pretixbase 0173_auto_20201211_1648 2025-01-07 12:08:35.754896+00 +215 pretixbase 0162b_auto_20201218_1810 2025-01-07 12:08:35.764402+00 +216 pretixbase 0174_merge_20201222_1031 2025-01-07 12:08:35.767414+00 +217 pretixbase 0175_orderrefund_comment 2025-01-07 12:08:35.781858+00 +218 pretixbase 0176_auto_20210205_1512 2025-01-07 12:08:35.819873+00 +219 pretixbase 0177_auto_20210301_1510 2025-01-07 12:08:35.909846+00 +220 pretixbase 0178_auto_20210308_1326 2025-01-07 12:08:36.034082+00 +221 pretixbase 0179_auto_20210311_1653 2025-01-07 12:08:36.081593+00 +222 pretixbase 0180_auto_20210324_1309 2025-01-07 12:08:36.539019+00 +223 pretixbase 0181_team_can_checkin_orders 2025-01-07 12:08:36.580067+00 +224 pretixbase 0182_question_valid_file_portrait 2025-01-07 12:08:36.612032+00 +225 pretixbase 0183_auto_20210423_0829 2025-01-07 12:08:36.681601+00 +226 pretixbase 0184_customer 2025-01-07 12:08:36.89394+00 +227 pretixbase 0185_memberships 2025-01-07 12:08:37.342178+00 +228 pretixbase 0186_invoice_sent_to_organizer 2025-01-07 12:08:37.377621+00 +229 pretixbase 0187_normalize_salutation 2025-01-07 12:08:37.761165+00 +230 pretixbase 0188_delete_requiredaction 2025-01-07 12:08:37.766776+00 +231 pretixbase 0189_auto_20210525_1311 2025-01-07 12:08:38.166442+00 +232 pretixbase 0190_quota_ignore_for_event_availability 2025-01-07 12:08:38.206704+00 +233 pretixbase 0191_event_last_modified 2025-01-07 12:08:38.240671+00 +234 pretixbase 0192_checkin_more_fields 2025-01-07 12:08:38.535034+00 +235 pretixbase 0193_auto_20210611_1355 2025-01-07 12:08:38.590181+00 +236 pretixbase 0194_membership_canceled 2025-01-07 12:08:38.610102+00 +237 pretixbase 0195_auto_20210622_1457 2025-01-07 12:08:38.658169+00 +238 pretixbase 0196_auto_20210523_1322 2025-01-07 12:08:38.75551+00 +239 pretixbase 0197_auto_20210914_0814 2025-01-07 12:08:38.844518+00 +240 pretixbase 0198_invoice_sent_to_customer 2025-01-07 12:08:38.89366+00 +241 pretixbase 0199_auto_20211005_1050 2025-01-07 12:08:38.981247+00 +242 pretixbase 0200_transaction 2025-01-07 12:08:39.051139+00 +243 pretixbase 0201_invoiceline_event_location 2025-01-07 12:08:39.080306+00 +244 pretixbase 0202_user_needs_password_change 2025-01-07 12:08:39.097489+00 +245 pretixbase 0203_orderposition_is_bundled 2025-01-07 12:08:39.132804+00 +246 pretixbase 0204_orderposition_backfill_is_bundled 2025-01-07 12:08:39.185353+00 +247 pretixbase 0205_itemvariation_require_approval 2025-01-07 12:08:39.511896+00 +248 pretixbase 0206_customer_phone 2025-01-07 12:08:39.543409+00 +249 pretixbase 0207_auto_20220119_1427 2025-01-07 12:08:39.634974+00 +250 pretixbase 0208_auto_20220214_1632 2025-01-07 12:08:39.665023+00 +251 pretixbase 0209_device_info 2025-01-07 12:08:39.698927+00 +252 pretixbase 0210_auto_20220303_2017 2025-01-07 12:08:40.171328+00 +253 pretixbase 0211_auto_20220314_2001 2025-01-07 12:08:40.236307+00 +254 pretixbase 0212_auto_20220318_1408 2025-01-07 12:08:40.410592+00 +255 pretixbase 0213_discount_condition_ignore_voucher_discounted 2025-01-07 12:08:40.45189+00 +256 pretixbase 0214_customer_notes_ext_id 2025-01-07 12:08:40.492212+00 +257 pretixbase 0215_customer_organizer_identifier_unique 2025-01-07 12:08:40.543924+00 +258 pretixbase 0216_checkin_forced_sent 2025-01-07 12:08:40.595086+00 +259 pretixbase 0217_eventfooterlink_organizerfooterlink 2025-01-07 12:08:40.725989+00 +260 pretixbase 0218_checkinlist_addon_match 2025-01-07 12:08:41.082635+00 +261 pretixbase 0219_auto_20220706_0913 2025-01-07 12:08:41.212876+00 +262 pretixbase 0220_auto_20220811_1002 2025-01-07 12:08:41.488608+00 +263 pretixbase 0221_clean_nonunique_question_identifiers 2025-01-07 12:08:41.557178+00 +264 pretixbase 0222_alter_question_unique_together 2025-01-07 12:08:41.608023+00 +265 pretixbase 0223_voucher_min_usages 2025-01-07 12:08:41.654539+00 +266 pretixbase 0224_eventmetaproperty_filter_allowed 2025-01-07 12:08:41.676662+00 +267 pretixbase 0225_orderpayment_process_initiated 2025-01-07 12:08:41.696885+00 +268 pretixbase 0226_itemvariationmetavalue 2025-01-07 12:08:41.779909+00 +269 pretixbase 0227_item_personalized 2025-01-07 12:08:41.899763+00 +270 pretixbase 0228_scheduledeventexport_scheduledorganizerexport 2025-01-07 12:08:42.050903+00 +271 pretixbase 0229_invoice_payment_provider_stamp 2025-01-07 12:08:42.118808+00 +272 pretixbase 0230_auto_20230208_0939 2025-01-07 12:08:42.774257+00 +273 pretixbase 0231_auto_20230208_1546 2025-01-07 12:08:43.117057+00 +274 pretixbase 0232_exchangerate 2025-01-07 12:08:43.161412+00 +275 pretixbase 0233_ignore_from_quota_while_blocked 2025-01-07 12:08:43.198648+00 +276 pretixbase 0234_total_ordering 2025-01-07 12:08:43.602995+00 +277 pretixbase 0235_auto_20230316_2023 2025-01-07 12:08:45.036661+00 +278 pretixbase 0236_reusable_media 2025-01-07 12:08:45.713997+00 +279 pretixbase 0237_question_valid_string_length 2025-01-07 12:08:45.752739+00 +280 pretixbase 0238_giftcard_owner_ticket 2025-01-07 12:08:45.818842+00 +281 pretixbase 0239_giftcard_info 2025-01-07 12:08:45.912779+00 +282 pretixbase 0240_auto_20230516_1119 2025-01-07 12:08:45.996322+00 +283 pretixbase 0241_itemmetaproperties_required_values 2025-01-07 12:08:46.057266+00 +284 pretixbase 0242_auto_20230512_1008 2025-01-07 12:08:46.177458+00 +285 pretixbase 0243_device_os_name_and_os_version 2025-01-07 12:08:46.249879+00 +286 pretixbase 0244_mediumkeyset 2025-01-07 12:08:46.385697+00 +287 pretixbase 0245_discount_benefit_products 2025-01-07 12:08:46.933481+00 +288 pretixbase 0246_bigint 2025-01-07 12:08:52.328645+00 +289 pretixbase 0247_checkinlist 2025-01-07 12:08:52.471489+00 +290 pretixbase 0248_item_free_price_suggestion 2025-01-07 12:08:52.541587+00 +291 pretixbase 0249_hidden_if_item_available 2025-01-07 12:08:52.612346+00 +292 pretixbase 0250_eventmetaproperty_filter_public 2025-01-07 12:08:52.760299+00 +293 pretixbase 0251_order_invoice_dirty 2025-01-07 12:08:52.808339+00 +294 pretixbase 0252_logentry_organizer 2025-01-07 12:08:52.975149+00 +295 pretixbase 0253_checkin_info 2025-01-07 12:08:53.419417+00 +296 pretixbase 0254_alter_logentry_organizer_link_and_more 2025-01-07 12:08:53.541427+00 +297 pretixbase 0255_item_unavail_modes 2025-01-07 12:08:53.623709+00 +298 pretixbase 0256_itemvariation_unavail_modes 2025-01-07 12:08:53.68931+00 +299 pretixbase 0257_item_default_price_not_null 2025-01-07 12:08:53.765099+00 +300 pretixbase 0258_uniq_indx 2025-01-07 12:08:54.022133+00 +301 pretixbase 0259_team_require_2fa 2025-01-07 12:08:54.072956+00 +302 pretixbase 0260_alter_reusablemedium_index_together 2025-01-07 12:08:54.117065+00 +303 pretixbase 0261_userknownloginsource 2025-01-07 12:08:54.190509+00 +304 pretixbase 0262_subevent_comment 2025-01-07 12:08:54.239099+00 +305 pretixbase 0263_auto_20240409_0732 2025-01-07 12:08:54.307377+00 +306 pretixbase 0264_order_internal_secret 2025-01-07 12:08:54.35989+00 +307 pretixbase 0265_saleschannel_and_more 2025-01-07 12:08:55.307764+00 +308 pretixbase 0266_saleschannel_migrate_data 2025-01-07 12:08:55.391156+00 +309 pretixbase 0267_remove_old_sales_channels 2025-01-07 12:08:56.02306+00 +310 pretixbase 0268_remove_subevent_items_remove_subevent_variations_and_more 2025-01-07 12:08:56.22747+00 +311 pretixbase 0269_order_api_meta 2025-01-07 12:08:56.280905+00 +312 autocheckin 0001_initial 2025-01-07 12:08:56.372262+00 +313 badges 0001_initial 2025-01-07 12:08:56.607905+00 +314 badges 0002_auto_20190201_1424 2025-01-07 12:08:56.79518+00 +315 badges 0003_bigint 2025-01-07 12:08:56.911681+00 +316 banktransfer 0001_initial 2025-01-07 12:08:57.094478+00 +317 banktransfer 0002_auto_20160908_2020 2025-01-07 12:08:57.702613+00 +318 banktransfer 0003_banktransaction_comment 2025-01-07 12:08:57.758374+00 +319 banktransfer 0004_auto_20170619_1125 2025-01-07 12:08:58.09341+00 +320 banktransfer 0005_auto_20181023_2209 2025-01-07 12:08:58.159352+00 +321 banktransfer 0006_auto_20200901_1419 2025-01-07 12:08:58.34481+00 +322 banktransfer 0007_refundexport 2025-01-07 12:08:58.427598+00 +323 banktransfer 0008_alter_banktransaction_amount 2025-01-07 12:08:58.480036+00 +324 banktransfer 0009_banktransaction_currency 2025-01-07 12:08:58.976919+00 +325 banktransfer 0010_bigint 2025-01-07 12:08:59.147271+00 +326 banktransfer 0011_banktransaction_external_id 2025-01-07 12:08:59.200843+00 +327 pretixapi 0002_auto_20180604_1120 2025-01-07 12:08:59.383345+00 +328 pretixapi 0003_webhook_webhookcall_webhookeventlistener 2025-01-07 12:08:59.845162+00 +329 pretixapi 0004_auto_20190405_1048 2025-01-07 12:08:59.868366+00 +330 pretixapi 0005_auto_20191028_1541 2025-01-07 12:09:00.212173+00 +331 pretixapi 0006_alter_webhook_target_url 2025-01-07 12:09:00.267801+00 +332 pretixapi 0007_alter_webhookcall_target_url 2025-01-07 12:09:00.279332+00 +333 pretixapi 0008_webhookcallretry 2025-01-07 12:09:00.388865+00 +334 pretixapi 0009_auto_20221217_1847 2025-01-07 12:09:00.700828+00 +335 oauth2_provider 0001_initial 2025-01-07 12:09:01.078335+00 +336 oauth2_provider 0002_auto_20190406_1805 2025-01-07 12:09:01.12147+00 +337 oauth2_provider 0003_auto_20201211_1314 2025-01-07 12:09:01.145279+00 +338 oauth2_provider 0004_auto_20200902_2022 2025-01-07 12:09:01.66417+00 +339 oauth2_provider 0005_auto_20211222_2352 2025-01-07 12:09:02.036117+00 +340 oauth2_provider 0006_alter_application_client_secret 2025-01-07 12:09:02.140292+00 +341 oauth2_provider 0007_application_post_logout_redirect_uris 2025-01-07 12:09:02.16722+00 +342 otp_static 0001_initial 2025-01-07 12:09:02.340144+00 +343 otp_static 0002_throttling 2025-01-07 12:09:02.379413+00 +344 otp_static 0003_add_timestamps 2025-01-07 12:09:02.430049+00 +345 otp_totp 0001_initial 2025-01-07 12:09:02.830325+00 +346 otp_totp 0002_auto_20190420_0723 2025-01-07 12:09:02.874072+00 +347 otp_totp 0003_add_timestamps 2025-01-07 12:09:02.914568+00 +348 paypal 0001_initial 2025-01-07 12:09:02.998323+00 +349 paypal 0002_referencedpaypalobject_payment 2025-01-07 12:09:03.084338+00 +350 paypal 0003_migrate_to_v2 2025-01-07 12:09:03.176312+00 +351 paypal 0004_bigint 2025-01-07 12:09:03.20757+00 +352 pretixapi 0010_webhook_comment 2025-01-07 12:09:03.263365+00 +353 pretixapi 0011_bigint 2025-01-07 12:09:03.779826+00 +354 pretixapi 0012_oauthapplication_post_logout_redirect_uris 2025-01-07 12:09:03.803562+00 +355 pretixbase 0270_historicpassword 2025-01-07 12:09:03.879946+00 +356 pretixbase 0271_itemcategory_cross_selling 2025-01-07 12:09:04.384744+00 +357 pretixbase 0272_printlog 2025-01-07 12:09:04.480372+00 +358 pretixbase 0273_remove_checkinlist_auto_checkin_sales_channels 2025-01-07 12:09:04.670277+00 +359 pretixbase 0274_tax_codes 2025-01-07 12:09:04.870866+00 +360 pretixdroid 0003_appconfiguration 2025-01-07 12:09:05.946196+00 +361 pretixdroid 0004_auto_20171124_1657 2025-01-07 12:09:05.949279+00 +362 pretixdroid 0005_auto_20180106_2122 2025-01-07 12:09:05.952001+00 +363 pretixdroid 0004_delete_appconfiguration 2025-01-07 12:09:05.959423+00 +364 pretixhelpers 0001_initial 2025-01-07 12:09:05.970534+00 +365 pretixhelpers 0002_auto_20180320_1219 2025-01-07 12:09:05.979264+00 +366 pretixhelpers 0003_thumbnail_created 2025-01-07 12:09:05.988941+00 +367 pretixhelpers 0004_bigint 2025-01-07 12:09:06.001028+00 +368 pretixmultidomain 0001_initial 2025-01-07 12:09:06.082278+00 +369 pretixmultidomain 0002_knowndomain_event 2025-01-07 12:09:06.160385+00 +370 pretixmultidomain 0003_alternativedomainassignment_knowndomain_mode_and_more 2025-01-07 12:09:06.520391+00 +371 returnurl 0001_initial 2025-01-07 12:09:06.524153+00 +372 returnurl 0002_auto_20240301_1355 2025-01-07 12:09:06.600597+00 +373 sendmail 0001_initial 2025-01-07 12:09:07.155665+00 +374 sendmail 0002_rule_enabled 2025-01-07 12:09:07.210832+00 +375 sendmail 0003_rule_attach_ical 2025-01-07 12:09:07.260263+00 +376 sendmail 0004_rule_restrict_to_status 2025-01-07 12:09:07.447699+00 +377 sendmail 0005_rule_checked_in_status 2025-01-07 12:09:07.503095+00 +378 sendmail 0006_rule_subevent_alter_rule_checked_in_status 2025-01-07 12:09:07.635311+00 +379 sendmail 0007_bigint 2025-01-07 12:09:07.718553+00 +380 sendmail 008_remove_scheduled_mails 2025-01-07 12:09:07.833617+00 +381 sendmail 0009_auto_20241113_1343 2025-01-07 12:09:07.922317+00 +382 sessions 0001_initial 2025-01-07 12:09:07.932695+00 +383 stripe 0001_initial 2025-01-07 12:09:08.019695+00 +384 stripe 0002_referencedstripeobject_payment 2025-01-07 12:09:08.103096+00 +385 stripe 0003_registeredapplepaydomain 2025-01-07 12:09:08.109968+00 +386 stripe 0004_auto_20211208_1407 2025-01-07 12:09:08.192642+00 +387 stripe 0005_bigint 2025-01-07 12:09:08.225596+00 +388 ticketoutputpdf 0001_initial 2025-01-07 12:09:08.737476+00 +389 ticketoutputpdf 0002_auto_20180605_2022 2025-01-07 12:09:08.824824+00 +390 ticketoutputpdf 0003_auto_20180710_1321 2025-01-07 12:09:08.947314+00 +391 ticketoutputpdf 0004_auto_20180805_1430 2025-01-07 12:09:09.034657+00 +392 ticketoutputpdf 0003_auto_20180805_1432 2025-01-07 12:09:09.121423+00 +393 ticketoutputpdf 0005_merge_20180805_1436 2025-01-07 12:09:09.126012+00 +394 ticketoutputpdf 0006_auto_20181017_0024 2025-01-07 12:09:09.167524+00 +395 ticketoutputpdf 0007_auto_20181123_1059 2025-01-07 12:09:09.317124+00 +396 ticketoutputpdf 0008_bigint 2025-01-07 12:09:09.47739+00 +397 ticketoutputpdf 0009_sales_channels_new_fields 2025-01-07 12:09:10.028365+00 +398 ticketoutputpdf 0010_sales_channels_migrate_data 2025-01-07 12:09:10.120646+00 +399 ticketoutputpdf 0011_sales_channels_remove_old_fields 2025-01-07 12:09:10.2406+00 +400 pretixbase 0050_orderposition_positionid_squashed_0061_event_location 2025-01-07 12:09:10.252546+00 +401 pretixbase 0108_auto_20190201_1527_squashed_0141_seat_sorting_rank 2025-01-07 12:09:10.255897+00 +402 pretixbase 0001_squashed_0028_auto_20160816_1242 2025-01-07 12:09:10.25924+00 +403 pretixbase 0052_team_teaminvite_squashed_0070_auto_20170719_0910 2025-01-07 12:09:10.262476+00 +404 pretixbase 0071_auto_20170729_1616_squashed_0075_auto_20170828_0901 2025-01-07 12:09:10.265714+00 +405 pretixbase 0098_auto_20180731_1243_squashed_0100_item_require_approval 2025-01-07 12:09:10.268985+00 +406 pretixbase 0031_auto_20160816_0648_squashed_0048_auto_20161129_1330 2025-01-07 12:09:10.272133+00 +407 pretixbase 0077_auto_20171124_1629_squashed_0088_auto_20180328_1217 2025-01-07 12:09:10.275364+00 +408 pretixbase 0051_auto_20170206_2027_squashed_0057_auto_20170501_2116 2025-01-07 12:09:10.278311+00 +409 pretixbase 0090_auto_20180509_0917_squashed_0095_auto_20180604_1129 2025-01-07 12:09:10.281157+00 +410 pretixbase 0076_orderfee_squashed_0082_invoiceaddress_internal_reference 2025-01-07 12:09:10.283742+00 +411 pretixbase 0105_auto_20190112_1512_squashed_0107_auto_20190129_1337 2025-01-07 12:09:10.286279+00 +412 pretixdroid 0003_appconfiguration_squashed_0005_auto_20180106_2122 2025-01-07 12:09:10.288802+00 +\. + + +-- +-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.django_session (session_key, session_data, expire_date) FROM stdin; +\. + + +-- +-- Data for Name: otp_static_staticdevice; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.otp_static_staticdevice (id, name, confirmed, user_id, throttling_failure_count, throttling_failure_timestamp, created_at, last_used_at) FROM stdin; +\. + + +-- +-- Data for Name: otp_static_statictoken; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.otp_static_statictoken (id, token, device_id) FROM stdin; +\. + + +-- +-- Data for Name: otp_totp_totpdevice; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.otp_totp_totpdevice (id, name, confirmed, key, step, t0, digits, tolerance, drift, last_t, user_id, throttling_failure_count, throttling_failure_timestamp, created_at, last_used_at) FROM stdin; +\. + + +-- +-- Data for Name: paypal_referencedpaypalobject; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.paypal_referencedpaypalobject (id, reference, order_id, payment_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_apicall; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_apicall (id, idempotency_key, auth_hash, created, locked, request_method, request_path, response_code, response_headers, response_body) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_oauthaccesstoken; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_oauthaccesstoken (id, token, expires, scope, created, updated, application_id, source_refresh_token_id, user_id, id_token_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_oauthaccesstoken_organizers; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_oauthaccesstoken_organizers (id, oauthaccesstoken_id, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_oauthapplication; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_oauthapplication (id, client_type, authorization_grant_type, skip_authorization, created, updated, name, redirect_uris, client_id, client_secret, active, user_id, algorithm, post_logout_redirect_uris) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_oauthgrant; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_oauthgrant (id, code, expires, redirect_uri, scope, created, updated, application_id, user_id, claims, code_challenge, code_challenge_method, nonce) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_oauthgrant_organizers; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_oauthgrant_organizers (id, oauthgrant_id, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_oauthidtoken; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_oauthidtoken (id, jti, expires, scope, created, updated, application_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_oauthidtoken_organizers; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_oauthidtoken_organizers (id, oauthidtoken_id, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_oauthrefreshtoken; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_oauthrefreshtoken (id, token, created, updated, revoked, access_token_id, application_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_webhook; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_webhook (id, enabled, target_url, all_events, organizer_id, comment) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_webhook_limit_events; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_webhook_limit_events (id, webhook_id, event_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_webhookcall; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_webhookcall (id, datetime, target_url, is_retry, execution_time, return_code, payload, response_body, webhook_id, success, action_type) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_webhookcallretry; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_webhookcallretry (id, retry_not_before, retry_count, action_type, logentry_id, webhook_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixapi_webhookeventlistener; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixapi_webhookeventlistener (id, action_type, webhook_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_attendeeprofile; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_attendeeprofile (id, attendee_name_cached, attendee_name_parts, attendee_email, company, street, zipcode, city, country, state, answers, customer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_blockedticketsecret; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_blockedticketsecret (id, secret, blocked, updated, event_id, position_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_cachedcombinedticket; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_cachedcombinedticket (id, provider, type, extension, file, order_id, created) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_cachedfile; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_cachedfile (id, expires, date, filename, type, file, session_key, web_download) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_cachedticket; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_cachedticket (id, provider, order_position_id, extension, file, type, created) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_cancellationrequest; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_cancellationrequest (id, created, cancellation_fee, refund_as_giftcard, order_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_cartposition; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_cartposition (id, price, attendee_name_cached, cart_id, datetime, expires, event_id, item_id, variation_id, voucher_id, attendee_email, addon_to_id, meta_info, subevent_id, attendee_name_parts, is_bundled, seat_id, city, company, country, state, street, zipcode, used_membership_id, custom_price_input, custom_price_input_is_net, line_price_gross, listed_price, price_after_voucher, tax_rate, discount_id, requested_valid_from) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_checkin; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_checkin (id, datetime, position_id, nonce, list_id, auto_checked_in, device_id, forced, type, gate_id, created, error_explanation, error_reason, raw_barcode, raw_item_id, raw_subevent_id, raw_variation_id, successful, force_sent, raw_source_type) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_checkinlist; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_checkinlist (id, name, all_products, event_id, subevent_id, include_pending, allow_entry_after_exit, allow_multiple_entries, rules, exit_all_at, addon_match, consider_tickets_used, ignore_in_statistics) FROM stdin; +1 Standard t 2 \N f t f {} \N f t f +\. + + +-- +-- Data for Name: pretixbase_checkinlist_gates; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_checkinlist_gates (id, checkinlist_id, gate_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_checkinlist_limit_products; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_checkinlist_limit_products (id, checkinlist_id, item_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_customer; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_customer (id, identifier, email, password, name_cached, name_parts, is_active, is_verified, last_login, date_joined, locale, last_modified, organizer_id, phone, external_identifier, notes, provider_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_customerssoaccesstoken; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_customerssoaccesstoken (id, from_code, token, expires, scope, client_id, customer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_customerssoclient; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_customerssoclient (id, name, is_active, client_id, client_secret, client_type, authorization_grant_type, redirect_uris, allowed_scopes, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_customerssogrant; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_customerssogrant (id, code, nonce, auth_time, expires, redirect_uri, scope, client_id, customer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_customerssoprovider; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_customerssoprovider (id, name, is_active, button_label, method, configuration, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_device; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_device (id, device_id, unique_serial, initialization_token, api_token, all_events, name, created, initialized, hardware_brand, hardware_model, software_brand, software_version, organizer_id, revoked, security_profile, gate_id, info, os_name, os_version, rsa_pubkey) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_device_limit_events; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_device_limit_events (id, device_id, event_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_discount; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_discount (id, active, internal_name, "position", available_from, available_until, subevent_mode, condition_all_products, condition_min_count, condition_min_value, benefit_discount_matching_percent, benefit_only_apply_to_cheapest_n_matches, condition_apply_to_addons, event_id, condition_ignore_voucher_discounted, benefit_apply_to_addons, benefit_ignore_voucher_discounted, benefit_same_products, all_sales_channels) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_discount_benefit_limit_products; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_discount_benefit_limit_products (id, discount_id, item_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_discount_condition_limit_products; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_discount_condition_limit_products (id, discount_id, item_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_discount_limit_sales_channels; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_discount_limit_sales_channels (id, discount_id, saleschannel_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_event; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_event (id, name, slug, currency, date_from, date_to, is_public, presale_end, presale_start, plugins, organizer_id, live, location, date_admission, comment, has_subevents, testmode, seating_plan_id, geo_lat, geo_lon, last_modified, all_sales_channels) FROM stdin; +1 {"da": "Skabelon (serie)", "en": "Template (series)"} template-series DKK 2001-01-01 00:00:00+00 \N t \N \N pretix.plugins.sendmail,pretix.plugins.statistics,pretix.plugins.checkinlists 1 f {} \N \N t t \N \N \N 2025-01-07 12:19:24.227791+00 t +2 {"da": "Template (single)", "en": "Skabelon (enkeltst\\u00e5ende)"} template-single DKK 2000-12-31 23:00:00+00 \N t \N \N pretix.plugins.sendmail,pretix.plugins.statistics,pretix.plugins.checkinlists 1 f {} \N \N f t \N \N \N 2025-01-07 12:25:30.688861+00 t +\. + + +-- +-- Data for Name: pretixbase_event_limit_sales_channels; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_event_limit_sales_channels (id, event_id, saleschannel_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_event_settingsstore; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_event_settingsstore (id, key, value, object_id) FROM stdin; +1 invoice_renderer modern1 1 +2 invoice_include_expire_date True 1 +3 invoice_renderer_highlight_order_code True 1 +4 ticketoutput_pdf__enabled True 1 +5 ticketoutput_passbook__enabled True 1 +6 event_list_type calendar 1 +7 invoice_email_attachment True 1 +8 name_scheme given_family 1 +9 payment_banktransfer_invoice_immediately True 1 +10 low_availability_percentage 10 1 +11 timezone UTC 1 +12 locale en 1 +13 locales ["en", "da"] 1 +14 invoice_renderer modern1 2 +15 invoice_include_expire_date True 2 +16 invoice_renderer_highlight_order_code True 2 +17 ticketoutput_pdf__enabled True 2 +18 ticketoutput_passbook__enabled True 2 +19 event_list_type calendar 2 +20 invoice_email_attachment True 2 +21 name_scheme given_family 2 +22 payment_banktransfer_invoice_immediately True 2 +23 low_availability_percentage 10 2 +24 timezone Europe/Copenhagen 2 +25 locale da 2 +26 locales ["en", "da"] 2 +\. + + +-- +-- Data for Name: pretixbase_eventfooterlink; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_eventfooterlink (id, label, url, event_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_eventlock; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_eventlock (event, date, token) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_eventmetaproperty; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_eventmetaproperty (id, name, "default", organizer_id, protected, required, filter_allowed, filter_public, public_label, "position", choices) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_eventmetavalue; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_eventmetavalue (id, value, event_id, property_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_exchangerate; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_exchangerate (id, source, source_date, updated, source_currency, other_currency, rate) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_gate; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_gate (id, name, identifier, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_giftcard; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_giftcard (id, issuance, secret, currency, issued_in_id, issuer_id, testmode, conditions, expires, owner_ticket_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_giftcardacceptance; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_giftcardacceptance (id, acceptor_id, issuer_id, active, reusable_media) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_giftcardtransaction; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_giftcardtransaction (id, datetime, value, card_id, order_id, payment_id, refund_id, text, acceptor_id, info) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_globalsettingsobject_settingsstore; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_globalsettingsobject_settingsstore (id, key, value) FROM stdin; +1 widget_file_en file://pub/widget/widget.en.cbfc2e8a98c986570eaf64436a9d743556fea37f.js +2 widget_checksum_en cbfc2e8a98c986570eaf64436a9d743556fea37f +3 widget_file_de file://pub/widget/widget.de.db5a839c3ac8a4f7051c9961da1112357af62d01.js +4 widget_checksum_de db5a839c3ac8a4f7051c9961da1112357af62d01 +5 widget_file_de-informal file://pub/widget/widget.de-informal.bf6ff466f0ace0d2dac29ca017d037943d6b88ba.js +6 widget_checksum_de-informal bf6ff466f0ace0d2dac29ca017d037943d6b88ba +7 widget_file_ar file://pub/widget/widget.ar.8e9e2588ab1a111d4eb2ea81e938d20f037aff5c.js +8 widget_checksum_ar 8e9e2588ab1a111d4eb2ea81e938d20f037aff5c +9 widget_file_eu file://pub/widget/widget.eu.11c0604c7d157eda067bb93cc4e18ce0fa41d72f.js +10 widget_checksum_eu 11c0604c7d157eda067bb93cc4e18ce0fa41d72f +11 widget_file_ca file://pub/widget/widget.ca.80bb7e17e8d61bcbbeb62e8d614744ba51561f8f.js +12 widget_checksum_ca 80bb7e17e8d61bcbbeb62e8d614744ba51561f8f +13 widget_file_zh-hans file://pub/widget/widget.zh-hans.a65febab79a4494bee07dcc5741d7c10d6fd0a9b.js +14 widget_checksum_zh-hans a65febab79a4494bee07dcc5741d7c10d6fd0a9b +15 widget_file_zh-hant file://pub/widget/widget.zh-hant.fbe2bea8f3dbc2bf3c03fbcf6dc56acdbb5cbb38.js +16 widget_checksum_zh-hant fbe2bea8f3dbc2bf3c03fbcf6dc56acdbb5cbb38 +17 widget_file_cs file://pub/widget/widget.cs.f8cbf71358b622acae4dd512d74301f00259b1f2.js +18 widget_checksum_cs f8cbf71358b622acae4dd512d74301f00259b1f2 +19 widget_file_da file://pub/widget/widget.da.e19eb64c99e235e48d0b9a36da5bbbddfaf969c2.js +20 widget_checksum_da e19eb64c99e235e48d0b9a36da5bbbddfaf969c2 +21 widget_file_nl file://pub/widget/widget.nl.577ba4b068db14c84eab86147f849a624d056f90.js +22 widget_checksum_nl 577ba4b068db14c84eab86147f849a624d056f90 +23 widget_file_nl-informal file://pub/widget/widget.nl-informal.1dd084855d9f083b58643a4b8bcb67bed9e3db4f.js +24 widget_checksum_nl-informal 1dd084855d9f083b58643a4b8bcb67bed9e3db4f +25 widget_file_fr file://pub/widget/widget.fr.03edb485d92504c2b8b81fcbd20352e4b2a060ab.js +26 widget_checksum_fr 03edb485d92504c2b8b81fcbd20352e4b2a060ab +27 widget_file_el file://pub/widget/widget.el.237c2131d2f52390b3cafbfbaf2d9af621c5dd92.js +28 widget_checksum_el 237c2131d2f52390b3cafbfbaf2d9af621c5dd92 +29 widget_file_id file://pub/widget/widget.id.c37f417f55a6d350dbb1eeec4729637f1e919437.js +30 widget_checksum_id c37f417f55a6d350dbb1eeec4729637f1e919437 +31 widget_file_it file://pub/widget/widget.it.fb9d551bf7370f384b26bf4e7aba50b783d0c073.js +32 widget_checksum_it fb9d551bf7370f384b26bf4e7aba50b783d0c073 +33 widget_file_jp file://pub/widget/widget.jp.b4aff726d4b4244a8e760cbf013576429501166e.js +34 widget_checksum_jp b4aff726d4b4244a8e760cbf013576429501166e +35 widget_file_lv file://pub/widget/widget.lv.633bb2b4d93b45bd7aca0f6a26df7d73f84505e9.js +36 widget_checksum_lv 633bb2b4d93b45bd7aca0f6a26df7d73f84505e9 +37 widget_file_nb-no file://pub/widget/widget.nb-no.1003232ec90fad2bc3d9fdf67c1fdda917d648a6.js +38 widget_checksum_nb-no 1003232ec90fad2bc3d9fdf67c1fdda917d648a6 +39 widget_file_pl file://pub/widget/widget.pl.b43b004f67201e347bf6fdd4cc0dc548ebcf9a24.js +40 widget_checksum_pl b43b004f67201e347bf6fdd4cc0dc548ebcf9a24 +41 widget_file_pt-pt file://pub/widget/widget.pt-pt.3efc08702a8276d684eb20a80cd333ed6baa3fe9.js +42 widget_checksum_pt-pt 3efc08702a8276d684eb20a80cd333ed6baa3fe9 +43 widget_file_ro file://pub/widget/widget.ro.7c56a47958e4fc0a4eca90bc9bb16355d3ff2634.js +44 widget_checksum_ro 7c56a47958e4fc0a4eca90bc9bb16355d3ff2634 +45 widget_file_ru file://pub/widget/widget.ru.2bcde60d9b54eb2d74d69f539bfaa4364fb8223f.js +46 widget_checksum_ru 2bcde60d9b54eb2d74d69f539bfaa4364fb8223f +47 widget_file_sk file://pub/widget/widget.sk.886a73f230b873f669ffdbfc2dca040d500d613c.js +48 widget_checksum_sk 886a73f230b873f669ffdbfc2dca040d500d613c +49 widget_file_sv file://pub/widget/widget.sv.fa398a8c9a87c6756532cf438b63644c17da61b1.js +50 widget_checksum_sv fa398a8c9a87c6756532cf438b63644c17da61b1 +51 widget_file_es file://pub/widget/widget.es.1bdc5e2aa29a434dd83e2dc98029012636cdb48c.js +52 widget_checksum_es 1bdc5e2aa29a434dd83e2dc98029012636cdb48c +53 widget_file_tr file://pub/widget/widget.tr.d1097f6d75f16e659d39b2463d61967a49a785b5.js +54 widget_checksum_tr d1097f6d75f16e659d39b2463d61967a49a785b5 +55 widget_file_uk file://pub/widget/widget.uk.a5d67a151dc7b29f19a79d4c4042a86fecb7bf8e.js +56 widget_checksum_uk a5d67a151dc7b29f19a79d4c4042a86fecb7bf8e +\. + + +-- +-- Data for Name: pretixbase_historicpassword; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_historicpassword (id, created, password, user_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_invoice; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_invoice (id, invoice_from, invoice_to, date, file, event_id, order_id, locale, additional_text, is_cancellation, refers_id, invoice_no, footer_text, introductory_text, payment_provider_text, prefix, organizer_id, foreign_currency_display, foreign_currency_rate, foreign_currency_rate_date, internal_reference, full_invoice_no, shredded, invoice_from_city, invoice_from_country, invoice_from_name, invoice_from_tax_id, invoice_from_vat_id, invoice_from_zipcode, invoice_to_city, invoice_to_company, invoice_to_country, invoice_to_name, invoice_to_street, invoice_to_vat_id, invoice_to_zipcode, reverse_charge, invoice_to_beneficiary, invoice_to_state, custom_field, sent_to_organizer, sent_to_customer, payment_provider_stamp, foreign_currency_source) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_invoiceaddress; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_invoiceaddress (id, last_modified, company, name_cached, street, zipcode, city, country_old, vat_id, order_id, country, is_business, vat_id_validated, internal_reference, name_parts, beneficiary, state, custom_field, customer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_invoiceline; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_invoiceline (id, description, gross_value, tax_value, tax_rate, invoice_id, tax_name, "position", event_date_from, subevent_id, attendee_name, event_date_to, item_id, variation_id, fee_internal_type, fee_type, event_location, tax_code) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_item; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_item (id, name, active, description, default_price, admission, "position", picture, available_from, available_until, category_id, event_id, free_price, hide_without_voucher, require_voucher, allow_cancel, max_per_order, min_per_order, tax_rule_id, checkin_attention, internal_name, original_price, require_approval, generate_tickets, require_bundling, show_quota_left, hidden_if_available_id, allow_waitinglist, issue_giftcard, grant_membership_duration_days, grant_membership_duration_like_event, grant_membership_duration_months, require_membership, grant_membership_type_id, require_membership_hidden, personalized, validity_dynamic_duration_days, validity_dynamic_duration_hours, validity_dynamic_duration_minutes, validity_dynamic_duration_months, validity_dynamic_start_choice, validity_dynamic_start_choice_day_limit, validity_fixed_from, validity_fixed_until, validity_mode, media_policy, media_type, free_price_suggestion, hidden_if_item_available_id, checkin_text, available_from_mode, available_until_mode, all_sales_channels) FROM stdin; +1 {"da": "Billet", "en": "Ticket"} t \N 0.00 t 1 \N \N \N 1 f f f t \N \N \N f \N \N f \N f \N \N t f 0 t 0 f \N f t \N \N \N \N f \N \N \N \N \N \N \N \N \N hide hide t +2 {"da": "Billet", "en": "Ticket"} t {} 0.00 t 1 \N \N \N 2 f f f t \N \N \N f \N \N f \N f \N \N t f 0 t 0 f \N f t \N \N \N \N f \N \N \N \N \N \N \N \N hide hide t +\. + + +-- +-- Data for Name: pretixbase_item_limit_sales_channels; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_item_limit_sales_channels (id, item_id, saleschannel_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_item_require_membership_types; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_item_require_membership_types (id, item_id, membershiptype_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itemaddon; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itemaddon (id, min_count, max_count, addon_category_id, base_item_id, "position", price_included, multi_allowed) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itembundle; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itembundle (id, count, designated_price, base_item_id, bundled_item_id, bundled_variation_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itemcategory; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itemcategory (id, name, "position", event_id, description, is_addon, internal_name, cross_selling_condition, cross_selling_mode) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itemcategory_cross_selling_match_products; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itemcategory_cross_selling_match_products (id, itemcategory_id, item_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itemmetaproperty; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itemmetaproperty (id, name, "default", event_id, allowed_values, required) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itemmetavalue; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itemmetavalue (id, value, item_id, property_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itemvariation; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itemvariation (id, value, active, "position", default_price, item_id, description, original_price, require_membership, available_from, available_until, hide_without_voucher, require_membership_hidden, require_approval, checkin_attention, free_price_suggestion, checkin_text, available_from_mode, available_until_mode, all_sales_channels) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itemvariation_limit_sales_channels; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itemvariation_limit_sales_channels (id, itemvariation_id, saleschannel_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itemvariation_require_membership_types; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itemvariation_require_membership_types (id, itemvariation_id, membershiptype_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_itemvariationmetavalue; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_itemvariationmetavalue (id, value, property_id, variation_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_logentry; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_logentry (id, object_id, datetime, action_type, data, content_type_id, event_id, user_id, api_token_id, visible, shredded, oauth_application_id, device_id, organizer_link_id) FROM stdin; +1 1 2025-01-07 12:09:54.715491+00 pretix.control.auth.user.new_source {"agent_type": "Firefox", "country": "?", "device_type": "Mac", "os_type": "Mac OS X"} 5 \N 1 \N t f \N \N \N +2 2 2025-01-07 12:14:19.288531+00 pretix.team.created {"all_events": true, "can_change_event_settings": true, "can_change_items": true, "can_create_events": true, "name": "hoeringsportal"} 34 \N 1 \N t f \N \N 1 +3 1 2025-01-07 12:19:24.232589+00 pretix.event.added {} 9 1 1 \N t f \N \N 1 +4 1 2025-01-07 12:19:24.235597+00 pretix.event.settings {"currency": "DKK", "date_from": "2001-01-01T00:00:00Z", "date_to": null, "geo_lat": null, "geo_lon": null, "has_subevents": true, "locale": "en", "locales": ["en", "da"], "location": {"ar": "", "ca": "", "cs": "", "da": "", "de": "", "de-informal": "", "el": "", "en": "", "es": "", "eu": "", "fr": "", "id": "", "it": "", "jp": "", "lv": "", "nb-no": "", "nl": "", "nl-informal": "", "pl": "", "pt-pt": "", "ro": "", "ru": "", "sk": "", "sv": "", "tr": "", "uk": "", "zh-hans": "", "zh-hant": ""}, "name": {"ar": "", "ca": "", "cs": "", "da": "Skabelon (serie)", "de": "", "de-informal": "", "el": "", "en": "Template (series)", "es": "", "eu": "", "fr": "", "id": "", "it": "", "jp": "", "lv": "", "nb-no": "", "nl": "", "nl-informal": "", "pl": "", "pt-pt": "", "ro": "", "ru": "", "sk": "", "sv": "", "tr": "", "uk": "", "zh-hans": "", "zh-hant": ""}, "no_taxes": true, "organizer": {"id": 1, "type": "Organizer"}, "presale_end": null, "presale_start": null, "slug": "template-series", "tax_rate": null, "timezone": "UTC"} 9 1 1 \N t f \N \N 1 +5 1 2025-01-07 12:23:20.150386+00 pretix.event.item.added {"default_price": "0", "name": {"ar": "", "ca": "", "cs": "", "da": "Billet", "de": "", "de-informal": "", "el": "", "en": "Ticket", "es": "", "eu": "", "fr": "", "id": "", "it": "", "jp": "", "lv": "", "nb-no": "", "nl": "", "nl-informal": "", "pl": "", "pt-pt": "", "ro": "", "ru": "", "sk": "", "sv": "", "tr": "", "uk": "", "zh-hans": "", "zh-hant": ""}} 11 1 1 \N t f \N \N 1 +6 1 2025-01-07 12:23:49.545667+00 pretix.subevent.added {"active": true, "comment": "", "date_admission": null, "date_from": "2001-01-01T00:00:00Z", "date_to": null, "frontpage_text": {"ar": "", "ca": "", "cs": "", "da": "", "de": "", "de-informal": "", "el": "", "en": "", "es": "", "eu": "", "fr": "", "id": "", "it": "", "jp": "", "lv": "", "nb-no": "", "nl": "", "nl-informal": "", "pl": "", "pt-pt": "", "ro": "", "ru": "", "sk": "", "sv": "", "tr": "", "uk": "", "zh-hans": "", "zh-hant": ""}, "geo_lat": null, "geo_lon": null, "is_public": true, "location": {"ar": "", "ca": "", "cs": "", "da": "", "de": "", "de-informal": "", "el": "", "en": "", "es": "", "eu": "", "fr": "", "id": "", "it": "", "jp": "", "lv": "", "nb-no": "", "nl": "", "nl-informal": "", "pl": "", "pt-pt": "", "ro": "", "ru": "", "sk": "", "sv": "", "tr": "", "uk": "", "zh-hans": "", "zh-hant": ""}, "name": {"ar": "", "ca": "", "cs": "", "da": "Skabelon (serie)", "de": "", "de-informal": "", "el": "", "en": "Template (series)", "es": "", "eu": "", "fr": "", "id": "", "it": "", "jp": "", "lv": "", "nb-no": "", "nl": "", "nl-informal": "", "pl": "", "pt-pt": "", "ro": "", "ru": "", "sk": "", "sv": "", "tr": "", "uk": "", "zh-hans": "", "zh-hant": ""}, "presale_end": null, "presale_start": null} 37 1 1 \N t f \N \N 1 +7 1 2025-01-07 12:23:49.556337+00 pretix.event.quota.added {"id": 1, "itemvars": ["1"]} 20 1 1 \N t f \N \N 1 +8 1 2025-01-07 12:23:49.557152+00 pretix.subevent.quota.added {"id": 1, "itemvars": ["1"]} 37 1 1 \N t f \N \N 1 +9 2 2025-01-07 12:25:30.693579+00 pretix.event.added {} 9 2 1 \N t f \N \N 1 +10 2 2025-01-07 12:25:30.696694+00 pretix.event.settings {"copy_from_event": null, "currency": "DKK", "date_from": "2001-01-01T00:00:00+01:00", "date_to": null, "geo_lat": null, "geo_lon": null, "has_subevents": false, "locale": "da", "locales": ["en", "da"], "location": {"ar": "", "ca": "", "cs": "", "da": "", "de": "", "de-informal": "", "el": "", "en": "", "es": "", "eu": "", "fr": "", "id": "", "it": "", "jp": "", "lv": "", "nb-no": "", "nl": "", "nl-informal": "", "pl": "", "pt-pt": "", "ro": "", "ru": "", "sk": "", "sv": "", "tr": "", "uk": "", "zh-hans": "", "zh-hant": ""}, "name": {"ar": "", "ca": "", "cs": "", "da": "Template (single)", "de": "", "de-informal": "", "el": "", "en": "Skabelon (enkeltst\\u00e5ende)", "es": "", "eu": "", "fr": "", "id": "", "it": "", "jp": "", "lv": "", "nb-no": "", "nl": "", "nl-informal": "", "pl": "", "pt-pt": "", "ro": "", "ru": "", "sk": "", "sv": "", "tr": "", "uk": "", "zh-hans": "", "zh-hant": ""}, "no_taxes": true, "organizer": {"id": 1, "type": "Organizer"}, "presale_end": null, "presale_start": null, "slug": "template-single", "tax_rate": null, "timezone": "Europe/Copenhagen"} 9 2 1 \N t f \N \N 1 +11 2 2025-01-07 12:26:01.696014+00 pretix.event.item.added {"default_price": "0", "name": {"ar": "", "ca": "", "cs": "", "da": "Billet", "de": "", "de-informal": "", "el": "", "en": "Ticket", "es": "", "eu": "", "fr": "", "id": "", "it": "", "jp": "", "lv": "", "nb-no": "", "nl": "", "nl-informal": "", "pl": "", "pt-pt": "", "ro": "", "ru": "", "sk": "", "sv": "", "tr": "", "uk": "", "zh-hans": "", "zh-hant": ""}} 11 2 1 \N t f \N \N 1 +12 2 2025-01-07 12:26:24.288399+00 pretix.event.quota.added {"close_when_sold_out": false, "ignore_for_event_availability": false, "itemvars": ["2"], "name": "Ticket", "release_after_exit": false, "size": null} 20 2 1 \N t f \N \N 1 +13 2 2025-01-07 12:27:08.282405+00 pretix.team.token.created {"id": 1, "name": "hoeringsportal"} 34 \N 1 \N t f \N \N 1 +\. + + +-- +-- Data for Name: pretixbase_mediumkeyset; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_mediumkeyset (id, public_id, media_type, active, uid_key, diversification_key, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_membership; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_membership (id, date_start, date_end, attendee_name_parts, customer_id, granted_in_id, membership_type_id, testmode, canceled) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_membershiptype; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_membershiptype (id, name, transferable, allow_parallel_usage, max_usages, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_notificationsetting; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_notificationsetting (id, action_type, method, event_id, user_id, enabled) FROM stdin; +1 pretix.event.order.refund.requested mail \N 1 t +\. + + +-- +-- Data for Name: pretixbase_order; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_order (id, code, status, email, locale, secret, datetime, expires, total, event_id, comment, expiry_reminder_sent, meta_info, download_reminder_sent, checkin_attention, last_modified, require_approval, testmode, email_known_to_work, cancellation_date, phone, customer_id, custom_followup_at, valid_if_pending, invoice_dirty, checkin_text, organizer_id, internal_secret, sales_channel_id, api_meta) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_orderfee; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_orderfee (id, value, description, internal_type, fee_type, tax_rate, tax_value, order_id, tax_rule_id, canceled, tax_code) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_orderpayment; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_orderpayment (id, local_id, state, amount, created, payment_date, provider, info, migrated, fee_id, order_id, process_initiated) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_orderposition; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_orderposition (id, price, attendee_name_cached, item_id, order_id, variation_id, voucher_id, tax_rate, tax_value, secret, positionid, attendee_email, addon_to_id, meta_info, subevent_id, tax_rule_id, pseudonymization_id, attendee_name_parts, canceled, web_secret, seat_id, city, company, country, state, street, zipcode, used_membership_id, is_bundled, discount_id, voucher_budget_use, blocked, valid_from, valid_until, ignore_from_quota_while_blocked, organizer_id, tax_code) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_orderrefund; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_orderrefund (id, local_id, state, source, amount, created, execution_date, provider, info, order_id, payment_id, comment) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_organizer; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_organizer (id, name, slug) FROM stdin; +1 hoeringsportal hoeringsportal +\. + + +-- +-- Data for Name: pretixbase_organizer_settingsstore; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_organizer_settingsstore (id, key, value, object_id) FROM stdin; +1 cookie_consent True 1 +\. + + +-- +-- Data for Name: pretixbase_organizerfooterlink; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_organizerfooterlink (id, label, url, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_printlog; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_printlog (id, datetime, created, successful, source, type, info, api_token_id, device_id, oauth_application_id, position_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_question; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_question (id, question, type, required, event_id, "position", help_text, ask_during_checkin, identifier, dependency_question_id, dependency_values, hidden, print_on_invoice, valid_date_max, valid_date_min, valid_datetime_max, valid_datetime_min, valid_number_max, valid_number_min, valid_file_portrait, valid_string_length_max, show_during_checkin) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_question_items; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_question_items (id, question_id, item_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_questionanswer; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_questionanswer (id, answer, cartposition_id, orderposition_id, question_id, file) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_questionanswer_options; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_questionanswer_options (id, questionanswer_id, questionoption_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_questionoption; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_questionoption (id, answer, question_id, "position", identifier) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_quota; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_quota (id, name, size, event_id, subevent_id, close_when_sold_out, closed, release_after_exit, ignore_for_event_availability) FROM stdin; +1 Tickets \N 1 1 f f f f +2 Ticket \N 2 \N f f f f +\. + + +-- +-- Data for Name: pretixbase_quota_items; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_quota_items (id, quota_id, item_id) FROM stdin; +1 1 1 +2 2 2 +\. + + +-- +-- Data for Name: pretixbase_quota_variations; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_quota_variations (id, quota_id, itemvariation_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_reusablemedium; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_reusablemedium (id, created, updated, type, identifier, active, expires, info, notes, customer_id, linked_giftcard_id, linked_orderposition_id, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_revokedticketsecret; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_revokedticketsecret (id, secret, created, event_id, position_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_saleschannel; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_saleschannel (id, label, identifier, type, "position", configuration, organizer_id) FROM stdin; +1 {"ar": "\\u0645\\u062a\\u062c\\u0631 \\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a", "ca": "Tenda en l\\u00ednia", "cs": "Online obchod", "da": "Netbutik", "de": "Online-Shop", "de-informal": "Online-Shop", "el": "\\u0397\\u03bb\\u03b5\\u03ba\\u03c4\\u03c1\\u03bf\\u03bd\\u03b9\\u03ba\\u03cc \\u03ba\\u03b1\\u03c4\\u03ac\\u03c3\\u03c4\\u03b7\\u03bc\\u03b1", "en": "Online shop", "es": "Tienda en l\\u00ednea", "eu": "Online denda", "fr": "Boutique en ligne", "id": "Toko onlineToko online", "it": "Vendite online", "jp": "Online shop", "lv": "Tie\\u0161saistes veikals", "nb-no": "Nettbutikk", "nl": "Online winkel", "nl-informal": "Online winkel", "pl": "Sklep online", "pt-pt": "Loja online", "ro": "Magazin online", "ru": "\\u0418\\u043d\\u0442\\u0435\\u0440\\u043d\\u0435\\u0442-\\u043c\\u0430\\u0433\\u0430\\u0437\\u0438\\u043d", "sk": "Internetov\\u00fd obchod", "sv": "Onlinebutik", "tr": "Online shop", "uk": "\\u0406\\u043d\\u0442\\u0435\\u0440\\u043d\\u0435\\u0442-\\u043c\\u0430\\u0433\\u0430\\u0437\\u0438\\u043d", "zh-hans": "\\u5728\\u7ebf\\u5546\\u57ce", "zh-hant": "\\u7db2\\u4e0a\\u5546\\u5e97"} web web 0 {} 1 +\. + + +-- +-- Data for Name: pretixbase_scheduledeventexport; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_scheduledeventexport (id, export_identifier, export_form_data, locale, mail_additional_recipients, mail_additional_recipients_cc, mail_additional_recipients_bcc, mail_subject, mail_template, schedule_rrule, schedule_rrule_time, schedule_next_run, error_counter, error_last_message, event_id, owner_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_scheduledorganizerexport; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_scheduledorganizerexport (id, export_identifier, export_form_data, locale, mail_additional_recipients, mail_additional_recipients_cc, mail_additional_recipients_bcc, mail_subject, mail_template, schedule_rrule, schedule_rrule_time, schedule_next_run, error_counter, error_last_message, timezone, organizer_id, owner_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_seat; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_seat (id, blocked, event_id, product_id, subevent_id, seat_guid, row_name, seat_number, zone_name, sorting_rank, row_label, seat_label, x, y) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_seatcategorymapping; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_seatcategorymapping (id, layout_category, event_id, product_id, subevent_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_seatingplan; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_seatingplan (id, name, layout, organizer_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_staffsession; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_staffsession (id, date_start, date_end, session_key, comment, user_id) FROM stdin; +1 2025-01-07 12:12:58.395153+00 \N i9x3y4134xc11tbcg2is1ruclq9xteik 1 +\. + + +-- +-- Data for Name: pretixbase_staffsessionauditlog; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_staffsessionauditlog (id, datetime, url, session_id, impersonating_id, method) FROM stdin; +1 2025-01-07 12:12:59.046895+00 /control/organizers/ 1 \N GET +2 2025-01-07 12:13:03.604757+00 /control/organizers/add 1 \N GET +3 2025-01-07 12:13:20.536921+00 /control/organizers/add 1 \N POST +4 2025-01-07 12:13:21.042558+00 /control/organizer/hoeringsportal/ 1 \N GET +5 2025-01-07 12:13:25.612323+00 /control/organizer/hoeringsportal/teams 1 \N GET +6 2025-01-07 12:13:53.440718+00 /control/organizer/hoeringsportal/team/add 1 \N GET +7 2025-01-07 12:14:19.153769+00 /control/organizer/hoeringsportal/team/add 1 \N POST +8 2025-01-07 12:14:19.951076+00 /control/organizer/hoeringsportal/team/2/ 1 \N GET +9 2025-01-07 12:17:19.66973+00 /control/organizer/hoeringsportal/ 1 \N GET +10 2025-01-07 12:17:22.780087+00 /control/organizer/hoeringsportal/ 1 \N GET +11 2025-01-07 12:17:40.086199+00 /control/events/add 1 \N GET +12 2025-01-07 12:18:06.157156+00 /control/events/add 1 \N POST +13 2025-01-07 12:19:01.6503+00 /control/events/add 1 \N POST +14 2025-01-07 12:19:23.808277+00 /control/events/add 1 \N POST +15 2025-01-07 12:19:24.316529+00 /control/event/hoeringsportal/template-series/settings/ 1 \N GET +16 2025-01-07 12:19:24.737898+00 /control/event/hoeringsportal/template-series/pdf/editor/webfonts.css 1 \N GET +17 2025-01-07 12:21:49.689135+00 /control/event/hoeringsportal/template-series/subevents/ 1 \N GET +18 2025-01-07 12:21:52.993802+00 /control/event/hoeringsportal/template-series/subevents/add 1 \N GET +19 2025-01-07 12:22:12.530123+00 /control/event/hoeringsportal/template-series/subevents/add 1 \N POST +20 2025-01-07 12:22:20.537523+00 /control/event/hoeringsportal/template-series/items/select2/itemvars 1 \N GET +21 2025-01-07 12:22:56.56131+00 /control/event/hoeringsportal/template-series/items/ 1 \N GET +22 2025-01-07 12:22:58.610208+00 /control/event/hoeringsportal/template-series/items/add 1 \N GET +23 2025-01-07 12:23:20.124576+00 /control/event/hoeringsportal/template-series/items/add 1 \N POST +24 2025-01-07 12:23:20.197837+00 /control/event/hoeringsportal/template-series/items/1/ 1 \N GET +25 2025-01-07 12:23:24.876186+00 /control/event/hoeringsportal/template-series/subevents/ 1 \N GET +26 2025-01-07 12:23:26.594071+00 /control/event/hoeringsportal/template-series/subevents/add 1 \N GET +27 2025-01-07 12:23:37.233949+00 /control/event/hoeringsportal/template-series/items/select2/itemvars 1 \N GET +28 2025-01-07 12:23:49.201831+00 /control/event/hoeringsportal/template-series/subevents/add 1 \N POST +29 2025-01-07 12:23:50.244337+00 /control/event/hoeringsportal/template-series/subevents/ 1 \N GET +30 2025-01-07 12:24:08.983148+00 /control/ 1 \N GET +31 2025-01-07 12:24:10.258078+00 /control/widgets.json 1 \N GET +32 2025-01-07 12:24:11.192412+00 /control/events/ 1 \N GET +33 2025-01-07 12:24:15.010626+00 /control/events/add 1 \N GET +34 2025-01-07 12:24:21.423993+00 /control/events/add 1 \N POST +35 2025-01-07 12:25:19.133295+00 /control/events/add 1 \N POST +36 2025-01-07 12:25:28.18175+00 /control/events/add 1 \N POST +37 2025-01-07 12:25:30.61127+00 /control/events/add 1 \N POST +38 2025-01-07 12:25:30.761753+00 /control/event/hoeringsportal/template-single/quickstart/ 1 \N GET +39 2025-01-07 12:25:48.406306+00 /control/event/hoeringsportal/template-single/items/ 1 \N GET +40 2025-01-07 12:25:50.378755+00 /control/event/hoeringsportal/template-single/items/add 1 \N GET +41 2025-01-07 12:26:01.494195+00 /control/event/hoeringsportal/template-single/items/add 1 \N POST +42 2025-01-07 12:26:01.770764+00 /control/event/hoeringsportal/template-single/items/2/ 1 \N GET +43 2025-01-07 12:26:11.176521+00 /control/event/hoeringsportal/template-single/items/2/ 1 \N POST +44 2025-01-07 12:26:11.868197+00 /control/event/hoeringsportal/template-single/items/2/ 1 \N GET +45 2025-01-07 12:26:17.438689+00 /control/event/hoeringsportal/template-single/quotas/add 1 \N GET +46 2025-01-07 12:26:24.15847+00 /control/event/hoeringsportal/template-single/quotas/add 1 \N POST +47 2025-01-07 12:26:24.305481+00 /control/event/hoeringsportal/template-single/quotas/ 1 \N GET +48 2025-01-07 12:26:32.291257+00 /control/ 1 \N GET +49 2025-01-07 12:26:32.433113+00 /control/widgets.json 1 \N GET +50 2025-01-07 12:26:33.72554+00 /control/organizers/ 1 \N GET +51 2025-01-07 12:26:35.255188+00 /control/organizer/hoeringsportal/ 1 \N GET +52 2025-01-07 12:26:38.600897+00 /control/organizer/hoeringsportal/teams 1 \N GET +53 2025-01-07 12:26:41.591864+00 /control/organizer/hoeringsportal/team/2/ 1 \N GET +54 2025-01-07 12:27:08.275839+00 /control/organizer/hoeringsportal/team/2/ 1 \N POST +55 2025-01-07 12:27:08.310316+00 /control/organizer/hoeringsportal/team/2/ 1 \N GET +\. + + +-- +-- Data for Name: pretixbase_subevent; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_subevent (id, active, name, date_from, date_to, date_admission, presale_end, presale_start, location, event_id, frontpage_text, is_public, seating_plan_id, geo_lat, geo_lon, last_modified, comment) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_subeventitem; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_subeventitem (id, price, item_id, subevent_id, disabled, available_from, available_until) FROM stdin; +1 \N 1 1 f \N \N +\. + + +-- +-- Data for Name: pretixbase_subeventitemvariation; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_subeventitemvariation (id, price, subevent_id, variation_id, disabled, available_from, available_until) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_subeventmetavalue; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_subeventmetavalue (id, value, property_id, subevent_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_taxrule; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_taxrule (id, name, rate, price_includes_tax, eu_reverse_charge, home_country, event_id, custom_rules, internal_name, keep_gross_if_rate_changes, code) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_team; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_team (id, name, all_events, can_create_events, can_change_teams, can_change_organizer_settings, can_change_event_settings, can_change_items, can_view_orders, can_change_orders, can_view_vouchers, can_change_vouchers, organizer_id, can_manage_gift_cards, can_checkin_orders, can_manage_customers, can_manage_reusable_media, require_2fa) FROM stdin; +1 Administrators t t t t t t t t t t 1 t f t t f +2 hoeringsportal t t f f t t f f f f 1 f f f f f +\. + + +-- +-- Data for Name: pretixbase_team_limit_events; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_team_limit_events (id, team_id, event_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_team_members; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_team_members (id, team_id, user_id) FROM stdin; +1 1 1 +2 2 1 +\. + + +-- +-- Data for Name: pretixbase_teamapitoken; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_teamapitoken (id, name, active, token, team_id) FROM stdin; +1 hoeringsportal t v84pb9f19gv5gkn2d8vbxoih6egx2v00hpbcwzwzqoqqixt22locej5rffmou78e 2 +\. + + +-- +-- Data for Name: pretixbase_teaminvite; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_teaminvite (id, email, token, team_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_transaction; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_transaction (id, created, datetime, migrated, positionid, count, price, tax_rate, tax_value, fee_type, internal_type, item_id, order_id, subevent_id, tax_rule_id, variation_id, tax_code) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_u2fdevice; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_u2fdevice (id, name, confirmed, json_data, user_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_user; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_user (id, password, last_login, email, is_active, is_staff, date_joined, locale, timezone, require_2fa, fullname, notifications_send, notifications_token, auth_backend, session_token, needs_password_change, auth_backend_identifier) FROM stdin; +1 argon2$argon2id$v=19$m=102400,t=2,p=8$UjNGZENuUVdRYXlOZVJQU1JKUHhIVg$YOfcOCDUQX3cpSwciFnvwTXsXC7wKOEmoZYqoxWAArg 2025-01-07 12:45:43.315284+00 admin@localhost t t 2025-01-07 12:08:12.81563+00 en UTC f \N t YIOZt0RnEAXwqW9gM3iARkFy1iVTKMyC native G1OD56ZfheDth9nZnwoLkw6FqWqq8hoh f \N +\. + + +-- +-- Data for Name: pretixbase_user_groups; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_user_groups (id, user_id, group_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_user_user_permissions (id, user_id, permission_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_userknownloginsource; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_userknownloginsource (id, agent_type, device_type, os_type, country, last_seen, user_id) FROM stdin; +1 Firefox Mac Mac OS X \N 2025-01-07 12:45:43.309292+00 1 +\. + + +-- +-- Data for Name: pretixbase_voucher; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_voucher (id, code, valid_until, block_quota, allow_ignore_quota, value, event_id, item_id, redeemed, variation_id, quota_id, comment, tag, max_usages, price_mode, subevent_id, show_hidden_items, seat_id, budget, min_usages, all_addons_included, all_bundles_included) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_waitinglistentry; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_waitinglistentry (id, created, email, locale, event_id, item_id, variation_id, voucher_id, subevent_id, priority, name_cached, name_parts, phone) FROM stdin; +\. + + +-- +-- Data for Name: pretixbase_webauthndevice; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixbase_webauthndevice (id, name, confirmed, credential_id, rp_id, icon_url, ukey, pub_key, sign_count, user_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixhelpers_thumbnail; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixhelpers_thumbnail (id, source, size, thumb, created) FROM stdin; +\. + + +-- +-- Data for Name: pretixmultidomain_alternativedomainassignment; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixmultidomain_alternativedomainassignment (id, domain_id, event_id) FROM stdin; +\. + + +-- +-- Data for Name: pretixmultidomain_knowndomain; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.pretixmultidomain_knowndomain (domainname, organizer_id, event_id, mode) FROM stdin; +\. + + +-- +-- Data for Name: sendmail_rule; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.sendmail_rule (id, subject, template, all_products, send_date, send_offset_days, send_offset_time, date_is_absolute, offset_to_event_end, offset_is_after, send_to, event_id, enabled, attach_ical, restrict_to_status, checked_in_status, subevent_id) FROM stdin; +\. + + +-- +-- Data for Name: sendmail_rule_limit_products; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.sendmail_rule_limit_products (id, rule_id, item_id) FROM stdin; +\. + + +-- +-- Data for Name: sendmail_scheduledmail; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.sendmail_scheduledmail (id, last_computed, computed_datetime, state, last_successful_order_id, event_id, rule_id, subevent_id) FROM stdin; +\. + + +-- +-- Data for Name: stripe_referencedstripeobject; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.stripe_referencedstripeobject (id, reference, order_id, payment_id) FROM stdin; +\. + + +-- +-- Data for Name: stripe_registeredapplepaydomain; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.stripe_registeredapplepaydomain (id, domain, account) FROM stdin; +\. + + +-- +-- Data for Name: ticketoutputpdf_ticketlayout; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.ticketoutputpdf_ticketlayout (id, "default", name, layout, background, event_id) FROM stdin; +\. + + +-- +-- Data for Name: ticketoutputpdf_ticketlayoutitem; Type: TABLE DATA; Schema: public; Owner: pretix +-- + +COPY public.ticketoutputpdf_ticketlayoutitem (id, item_id, layout_id, sales_channel_id) FROM stdin; +\. + + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.auth_group_id_seq', 1, false); + + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 1, false); + + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.auth_permission_id_seq', 464, true); + + +-- +-- Name: autocheckin_autocheckinrule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.autocheckin_autocheckinrule_id_seq', 1, false); + + +-- +-- Name: autocheckin_autocheckinrule_limit_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.autocheckin_autocheckinrule_limit_products_id_seq', 1, false); + + +-- +-- Name: autocheckin_autocheckinrule_limit_sales_channels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.autocheckin_autocheckinrule_limit_sales_channels_id_seq', 1, false); + + +-- +-- Name: autocheckin_autocheckinrule_limit_variations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.autocheckin_autocheckinrule_limit_variations_id_seq', 1, false); + + +-- +-- Name: badges_badgeitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.badges_badgeitem_id_seq', 1, false); + + +-- +-- Name: badges_badgelayout_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.badges_badgelayout_id_seq', 1, false); + + +-- +-- Name: banktransfer_bankimportjob_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.banktransfer_bankimportjob_id_seq', 1, false); + + +-- +-- Name: banktransfer_banktransaction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.banktransfer_banktransaction_id_seq', 1, false); + + +-- +-- Name: banktransfer_refundexport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.banktransfer_refundexport_id_seq', 1, false); + + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.django_content_type_id_seq', 116, true); + + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.django_migrations_id_seq', 412, true); + + +-- +-- Name: otp_static_staticdevice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.otp_static_staticdevice_id_seq', 1, false); + + +-- +-- Name: otp_static_statictoken_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.otp_static_statictoken_id_seq', 1, false); + + +-- +-- Name: otp_totp_totpdevice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.otp_totp_totpdevice_id_seq', 1, false); + + +-- +-- Name: paypal_referencedpaypalobject_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.paypal_referencedpaypalobject_id_seq', 1, false); + + +-- +-- Name: pretixapi_apicall_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_apicall_id_seq', 1, false); + + +-- +-- Name: pretixapi_oauthaccesstoken_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_oauthaccesstoken_id_seq', 1, false); + + +-- +-- Name: pretixapi_oauthaccesstoken_organizers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_oauthaccesstoken_organizers_id_seq', 1, false); + + +-- +-- Name: pretixapi_oauthapplication_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_oauthapplication_id_seq', 1, false); + + +-- +-- Name: pretixapi_oauthgrant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_oauthgrant_id_seq', 1, false); + + +-- +-- Name: pretixapi_oauthgrant_organizers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_oauthgrant_organizers_id_seq', 1, false); + + +-- +-- Name: pretixapi_oauthidtoken_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_oauthidtoken_id_seq', 1, false); + + +-- +-- Name: pretixapi_oauthidtoken_organizers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_oauthidtoken_organizers_id_seq', 1, false); + + +-- +-- Name: pretixapi_oauthrefreshtoken_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_oauthrefreshtoken_id_seq', 1, false); + + +-- +-- Name: pretixapi_webhook_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_webhook_id_seq', 1, false); + + +-- +-- Name: pretixapi_webhook_limit_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_webhook_limit_events_id_seq', 1, false); + + +-- +-- Name: pretixapi_webhookcall_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_webhookcall_id_seq', 1, false); + + +-- +-- Name: pretixapi_webhookcallretry_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_webhookcallretry_id_seq', 1, false); + + +-- +-- Name: pretixapi_webhookeventlistener_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixapi_webhookeventlistener_id_seq', 1, false); + + +-- +-- Name: pretixbase_attendeeprofile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_attendeeprofile_id_seq', 1, false); + + +-- +-- Name: pretixbase_blockedticketsecret_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_blockedticketsecret_id_seq', 1, false); + + +-- +-- Name: pretixbase_cachedcombinedticket_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_cachedcombinedticket_id_seq', 1, false); + + +-- +-- Name: pretixbase_cachedticket_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_cachedticket_id_seq', 1, false); + + +-- +-- Name: pretixbase_cancellationrequest_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_cancellationrequest_id_seq', 1, false); + + +-- +-- Name: pretixbase_cartposition_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_cartposition_id_seq', 1, false); + + +-- +-- Name: pretixbase_checkinlist_gates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_checkinlist_gates_id_seq', 1, false); + + +-- +-- Name: pretixbase_checkinlist_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_checkinlist_id_seq', 1, true); + + +-- +-- Name: pretixbase_checkinlist_limit_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_checkinlist_limit_products_id_seq', 1, false); + + +-- +-- Name: pretixbase_customer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_customer_id_seq', 1, false); + + +-- +-- Name: pretixbase_customerssoaccesstoken_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_customerssoaccesstoken_id_seq', 1, false); + + +-- +-- Name: pretixbase_customerssoclient_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_customerssoclient_id_seq', 1, false); + + +-- +-- Name: pretixbase_customerssogrant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_customerssogrant_id_seq', 1, false); + + +-- +-- Name: pretixbase_customerssoprovider_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_customerssoprovider_id_seq', 1, false); + + +-- +-- Name: pretixbase_device_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_device_id_seq', 1, false); + + +-- +-- Name: pretixbase_device_limit_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_device_limit_events_id_seq', 1, false); + + +-- +-- Name: pretixbase_discount_benefit_limit_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_discount_benefit_limit_products_id_seq', 1, false); + + +-- +-- Name: pretixbase_discount_condition_limit_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_discount_condition_limit_products_id_seq', 1, false); + + +-- +-- Name: pretixbase_discount_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_discount_id_seq', 1, false); + + +-- +-- Name: pretixbase_discount_limit_sales_channels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_discount_limit_sales_channels_id_seq', 1, false); + + +-- +-- Name: pretixbase_event_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_event_id_seq', 2, true); + + +-- +-- Name: pretixbase_event_limit_sales_channels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_event_limit_sales_channels_id_seq', 1, false); + + +-- +-- Name: pretixbase_eventfooterlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_eventfooterlink_id_seq', 1, false); + + +-- +-- Name: pretixbase_eventmetaproperty_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_eventmetaproperty_id_seq', 1, false); + + +-- +-- Name: pretixbase_eventmetavalue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_eventmetavalue_id_seq', 1, false); + + +-- +-- Name: pretixbase_eventsetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_eventsetting_id_seq', 26, true); + + +-- +-- Name: pretixbase_exchangerate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_exchangerate_id_seq', 1, false); + + +-- +-- Name: pretixbase_gate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_gate_id_seq', 1, false); + + +-- +-- Name: pretixbase_giftcard_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_giftcard_id_seq', 1, false); + + +-- +-- Name: pretixbase_giftcardacceptance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_giftcardacceptance_id_seq', 1, false); + + +-- +-- Name: pretixbase_giftcardtransaction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_giftcardtransaction_id_seq', 1, false); + + +-- +-- Name: pretixbase_globalsettingsobject_settingsstore_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_globalsettingsobject_settingsstore_id_seq', 56, true); + + +-- +-- Name: pretixbase_historicpassword_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_historicpassword_id_seq', 1, false); + + +-- +-- Name: pretixbase_invoice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_invoice_id_seq', 1, false); + + +-- +-- Name: pretixbase_invoiceaddress_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_invoiceaddress_id_seq', 1, false); + + +-- +-- Name: pretixbase_invoiceline_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_invoiceline_id_seq', 1, false); + + +-- +-- Name: pretixbase_item_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_item_id_seq', 2, true); + + +-- +-- Name: pretixbase_item_limit_sales_channels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_item_limit_sales_channels_id_seq', 1, false); + + +-- +-- Name: pretixbase_item_require_membership_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_item_require_membership_types_id_seq', 1, false); + + +-- +-- Name: pretixbase_itemaddon_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itemaddon_id_seq', 1, false); + + +-- +-- Name: pretixbase_itembundle_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itembundle_id_seq', 1, false); + + +-- +-- Name: pretixbase_itemcategory_cross_selling_match_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itemcategory_cross_selling_match_products_id_seq', 1, false); + + +-- +-- Name: pretixbase_itemcategory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itemcategory_id_seq', 1, false); + + +-- +-- Name: pretixbase_itemmetaproperty_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itemmetaproperty_id_seq', 1, false); + + +-- +-- Name: pretixbase_itemmetavalue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itemmetavalue_id_seq', 1, false); + + +-- +-- Name: pretixbase_itemvariation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itemvariation_id_seq', 1, false); + + +-- +-- Name: pretixbase_itemvariation_limit_sales_channels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itemvariation_limit_sales_channels_id_seq', 1, false); + + +-- +-- Name: pretixbase_itemvariation_require_membership_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itemvariation_require_membership_types_id_seq', 1, false); + + +-- +-- Name: pretixbase_itemvariationmetavalue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_itemvariationmetavalue_id_seq', 1, false); + + +-- +-- Name: pretixbase_logentry_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_logentry_id_seq', 13, true); + + +-- +-- Name: pretixbase_mediumkeyset_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_mediumkeyset_id_seq', 1, false); + + +-- +-- Name: pretixbase_membership_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_membership_id_seq', 1, false); + + +-- +-- Name: pretixbase_membershiptype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_membershiptype_id_seq', 1, false); + + +-- +-- Name: pretixbase_notificationsetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_notificationsetting_id_seq', 1, true); + + +-- +-- Name: pretixbase_order_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_order_id_seq', 1, false); + + +-- +-- Name: pretixbase_orderfee_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_orderfee_id_seq', 1, false); + + +-- +-- Name: pretixbase_orderpayment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_orderpayment_id_seq', 1, false); + + +-- +-- Name: pretixbase_orderposition_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_orderposition_id_seq', 1, false); + + +-- +-- Name: pretixbase_orderrefund_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_orderrefund_id_seq', 1, false); + + +-- +-- Name: pretixbase_organizer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_organizer_id_seq', 1, true); + + +-- +-- Name: pretixbase_organizerfooterlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_organizerfooterlink_id_seq', 1, false); + + +-- +-- Name: pretixbase_organizersetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_organizersetting_id_seq', 1, true); + + +-- +-- Name: pretixbase_printlog_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_printlog_id_seq', 1, false); + + +-- +-- Name: pretixbase_question_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_question_id_seq', 1, false); + + +-- +-- Name: pretixbase_question_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_question_items_id_seq', 1, false); + + +-- +-- Name: pretixbase_questionanswer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_questionanswer_id_seq', 1, false); + + +-- +-- Name: pretixbase_questionanswer_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_questionanswer_options_id_seq', 1, false); + + +-- +-- Name: pretixbase_questionoption_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_questionoption_id_seq', 1, false); + + +-- +-- Name: pretixbase_quota_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_quota_id_seq', 2, true); + + +-- +-- Name: pretixbase_quota_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_quota_items_id_seq', 2, true); + + +-- +-- Name: pretixbase_quota_variations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_quota_variations_id_seq', 1, false); + + +-- +-- Name: pretixbase_reusablemedium_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_reusablemedium_id_seq', 1, false); + + +-- +-- Name: pretixbase_revokedticketsecret_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_revokedticketsecret_id_seq', 1, false); + + +-- +-- Name: pretixbase_saleschannel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_saleschannel_id_seq', 1, true); + + +-- +-- Name: pretixbase_scheduledeventexport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_scheduledeventexport_id_seq', 1, false); + + +-- +-- Name: pretixbase_scheduledorganizerexport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_scheduledorganizerexport_id_seq', 1, false); + + +-- +-- Name: pretixbase_seat_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_seat_id_seq', 1, false); + + +-- +-- Name: pretixbase_seatcategorymapping_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_seatcategorymapping_id_seq', 1, false); + + +-- +-- Name: pretixbase_seatingplan_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_seatingplan_id_seq', 1, false); + + +-- +-- Name: pretixbase_staffsession_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_staffsession_id_seq', 1, true); + + +-- +-- Name: pretixbase_staffsessionauditlog_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_staffsessionauditlog_id_seq', 55, true); + + +-- +-- Name: pretixbase_subevent_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_subevent_id_seq', 1, true); + + +-- +-- Name: pretixbase_subeventitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_subeventitem_id_seq', 1, true); + + +-- +-- Name: pretixbase_subeventitemvariation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_subeventitemvariation_id_seq', 1, false); + + +-- +-- Name: pretixbase_subeventmetavalue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_subeventmetavalue_id_seq', 1, false); + + +-- +-- Name: pretixbase_taxrule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_taxrule_id_seq', 1, false); + + +-- +-- Name: pretixbase_team_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_team_id_seq', 2, true); + + +-- +-- Name: pretixbase_team_limit_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_team_limit_events_id_seq', 1, false); + + +-- +-- Name: pretixbase_team_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_team_members_id_seq', 2, true); + + +-- +-- Name: pretixbase_teamapitoken_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_teamapitoken_id_seq', 1, true); + + +-- +-- Name: pretixbase_teaminvite_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_teaminvite_id_seq', 1, false); + + +-- +-- Name: pretixbase_transaction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_transaction_id_seq', 1, false); + + +-- +-- Name: pretixbase_u2fdevice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_u2fdevice_id_seq', 1, false); + + +-- +-- Name: pretixbase_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_user_groups_id_seq', 1, false); + + +-- +-- Name: pretixbase_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_user_id_seq', 1, true); + + +-- +-- Name: pretixbase_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_user_user_permissions_id_seq', 1, false); + + +-- +-- Name: pretixbase_userknownloginsource_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_userknownloginsource_id_seq', 1, true); + + +-- +-- Name: pretixbase_voucher_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_voucher_id_seq', 1, false); + + +-- +-- Name: pretixbase_waitinglistentry_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_waitinglistentry_id_seq', 1, false); + + +-- +-- Name: pretixbase_webauthndevice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixbase_webauthndevice_id_seq', 1, false); + + +-- +-- Name: pretixdroid_checkin_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixdroid_checkin_id_seq', 1, false); + + +-- +-- Name: pretixhelpers_thumbnail_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixhelpers_thumbnail_id_seq', 1, false); + + +-- +-- Name: pretixmultidomain_alternativedomainassignment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.pretixmultidomain_alternativedomainassignment_id_seq', 1, false); + + +-- +-- Name: sendmail_rule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.sendmail_rule_id_seq', 1, false); + + +-- +-- Name: sendmail_rule_limit_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.sendmail_rule_limit_products_id_seq', 1, false); + + +-- +-- Name: sendmail_scheduledmail_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.sendmail_scheduledmail_id_seq', 1, false); + + +-- +-- Name: stripe_referencedstripeobject_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.stripe_referencedstripeobject_id_seq', 1, false); + + +-- +-- Name: stripe_registeredapplepaydomain_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.stripe_registeredapplepaydomain_id_seq', 1, false); + + +-- +-- Name: ticketoutputpdf_ticketlayout_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.ticketoutputpdf_ticketlayout_id_seq', 1, false); + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pretix +-- + +SELECT pg_catalog.setval('public.ticketoutputpdf_ticketlayoutitem_id_seq', 1, false); + + +-- +-- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +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: pretix +-- + +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: pretix +-- + +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: pretix +-- + +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: pretix +-- + +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: pretix +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id); + + +-- +-- Name: autocheckin_autocheckinrule_limit_products autocheckin_autocheckinr_autocheckinrule_id_item__fa1b0dfd_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_products + ADD CONSTRAINT autocheckin_autocheckinr_autocheckinrule_id_item__fa1b0dfd_uniq UNIQUE (autocheckinrule_id, item_id); + + +-- +-- Name: autocheckin_autocheckinrule_limit_variations autocheckin_autocheckinr_autocheckinrule_id_itemv_04924c0d_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_variations + ADD CONSTRAINT autocheckin_autocheckinr_autocheckinrule_id_itemv_04924c0d_uniq UNIQUE (autocheckinrule_id, itemvariation_id); + + +-- +-- Name: autocheckin_autocheckinrule_limit_sales_channels autocheckin_autocheckinr_autocheckinrule_id_sales_65fd5b53_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_sales_channels + ADD CONSTRAINT autocheckin_autocheckinr_autocheckinrule_id_sales_65fd5b53_uniq UNIQUE (autocheckinrule_id, saleschannel_id); + + +-- +-- Name: autocheckin_autocheckinrule_limit_products autocheckin_autocheckinrule_limit_products_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_products + ADD CONSTRAINT autocheckin_autocheckinrule_limit_products_pkey PRIMARY KEY (id); + + +-- +-- Name: autocheckin_autocheckinrule_limit_sales_channels autocheckin_autocheckinrule_limit_sales_channels_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_sales_channels + ADD CONSTRAINT autocheckin_autocheckinrule_limit_sales_channels_pkey PRIMARY KEY (id); + + +-- +-- Name: autocheckin_autocheckinrule_limit_variations autocheckin_autocheckinrule_limit_variations_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_variations + ADD CONSTRAINT autocheckin_autocheckinrule_limit_variations_pkey PRIMARY KEY (id); + + +-- +-- Name: autocheckin_autocheckinrule autocheckin_autocheckinrule_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule + ADD CONSTRAINT autocheckin_autocheckinrule_pkey PRIMARY KEY (id); + + +-- +-- Name: badges_badgeitem badges_badgeitem_item_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.badges_badgeitem + ADD CONSTRAINT badges_badgeitem_item_id_key UNIQUE (item_id); + + +-- +-- Name: badges_badgeitem badges_badgeitem_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.badges_badgeitem + ADD CONSTRAINT badges_badgeitem_pkey PRIMARY KEY (id); + + +-- +-- Name: badges_badgelayout badges_badgelayout_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.badges_badgelayout + ADD CONSTRAINT badges_badgelayout_pkey PRIMARY KEY (id); + + +-- +-- Name: banktransfer_bankimportjob banktransfer_bankimportjob_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_bankimportjob + ADD CONSTRAINT banktransfer_bankimportjob_pkey PRIMARY KEY (id); + + +-- +-- Name: banktransfer_banktransaction banktransfer_banktransac_event_id_organizer_id_ch_2899b1f0_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_banktransaction + ADD CONSTRAINT banktransfer_banktransac_event_id_organizer_id_ch_2899b1f0_uniq UNIQUE (event_id, organizer_id, checksum); + + +-- +-- Name: banktransfer_banktransaction banktransfer_banktransaction_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_banktransaction + ADD CONSTRAINT banktransfer_banktransaction_pkey PRIMARY KEY (id); + + +-- +-- Name: banktransfer_refundexport banktransfer_refundexport_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_refundexport + ADD CONSTRAINT banktransfer_refundexport_pkey PRIMARY KEY (id); + + +-- +-- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +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: pretix +-- + +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: pretix +-- + +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: pretix +-- + +ALTER TABLE ONLY public.django_session + ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key); + + +-- +-- Name: pretixbase_order order_organizer_code_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_order + ADD CONSTRAINT order_organizer_code_uniq UNIQUE (organizer_id, code); + + +-- +-- Name: otp_static_staticdevice otp_static_staticdevice_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.otp_static_staticdevice + ADD CONSTRAINT otp_static_staticdevice_pkey PRIMARY KEY (id); + + +-- +-- Name: otp_static_statictoken otp_static_statictoken_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.otp_static_statictoken + ADD CONSTRAINT otp_static_statictoken_pkey PRIMARY KEY (id); + + +-- +-- Name: otp_totp_totpdevice otp_totp_totpdevice_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.otp_totp_totpdevice + ADD CONSTRAINT otp_totp_totpdevice_pkey PRIMARY KEY (id); + + +-- +-- Name: paypal_referencedpaypalobject paypal_referencedpaypalobject_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.paypal_referencedpaypalobject + ADD CONSTRAINT paypal_referencedpaypalobject_pkey PRIMARY KEY (id); + + +-- +-- Name: paypal_referencedpaypalobject paypal_referencedpaypalobject_reference_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.paypal_referencedpaypalobject + ADD CONSTRAINT paypal_referencedpaypalobject_reference_key UNIQUE (reference); + + +-- +-- Name: pretixapi_apicall pretixapi_apicall_idempotency_key_auth_hash_5fe25ccd_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_apicall + ADD CONSTRAINT pretixapi_apicall_idempotency_key_auth_hash_5fe25ccd_uniq UNIQUE (idempotency_key, auth_hash); + + +-- +-- Name: pretixapi_apicall pretixapi_apicall_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_apicall + ADD CONSTRAINT pretixapi_apicall_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_oauthaccesstoken_organizers pretixapi_oauthaccesstok_oauthaccesstoken_id_orga_f73804a6_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken_organizers + ADD CONSTRAINT pretixapi_oauthaccesstok_oauthaccesstoken_id_orga_f73804a6_uniq UNIQUE (oauthaccesstoken_id, organizer_id); + + +-- +-- Name: pretixapi_oauthaccesstoken pretixapi_oauthaccesstoken_id_token_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken + ADD CONSTRAINT pretixapi_oauthaccesstoken_id_token_id_key UNIQUE (id_token_id); + + +-- +-- Name: pretixapi_oauthaccesstoken_organizers pretixapi_oauthaccesstoken_organizers_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken_organizers + ADD CONSTRAINT pretixapi_oauthaccesstoken_organizers_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_oauthaccesstoken pretixapi_oauthaccesstoken_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken + ADD CONSTRAINT pretixapi_oauthaccesstoken_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_oauthaccesstoken pretixapi_oauthaccesstoken_source_refresh_token_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken + ADD CONSTRAINT pretixapi_oauthaccesstoken_source_refresh_token_id_key UNIQUE (source_refresh_token_id); + + +-- +-- Name: pretixapi_oauthaccesstoken pretixapi_oauthaccesstoken_token_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken + ADD CONSTRAINT pretixapi_oauthaccesstoken_token_key UNIQUE (token); + + +-- +-- Name: pretixapi_oauthapplication pretixapi_oauthapplication_client_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthapplication + ADD CONSTRAINT pretixapi_oauthapplication_client_id_key UNIQUE (client_id); + + +-- +-- Name: pretixapi_oauthapplication pretixapi_oauthapplication_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthapplication + ADD CONSTRAINT pretixapi_oauthapplication_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_oauthgrant pretixapi_oauthgrant_code_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthgrant + ADD CONSTRAINT pretixapi_oauthgrant_code_key UNIQUE (code); + + +-- +-- Name: pretixapi_oauthgrant_organizers pretixapi_oauthgrant_org_oauthgrant_id_organizer__201ea26a_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthgrant_organizers + ADD CONSTRAINT pretixapi_oauthgrant_org_oauthgrant_id_organizer__201ea26a_uniq UNIQUE (oauthgrant_id, organizer_id); + + +-- +-- Name: pretixapi_oauthgrant_organizers pretixapi_oauthgrant_organizers_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthgrant_organizers + ADD CONSTRAINT pretixapi_oauthgrant_organizers_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_oauthgrant pretixapi_oauthgrant_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthgrant + ADD CONSTRAINT pretixapi_oauthgrant_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_oauthidtoken pretixapi_oauthidtoken_jti_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthidtoken + ADD CONSTRAINT pretixapi_oauthidtoken_jti_key UNIQUE (jti); + + +-- +-- Name: pretixapi_oauthidtoken_organizers pretixapi_oauthidtoken_o_oauthidtoken_id_organize_1fedea71_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthidtoken_organizers + ADD CONSTRAINT pretixapi_oauthidtoken_o_oauthidtoken_id_organize_1fedea71_uniq UNIQUE (oauthidtoken_id, organizer_id); + + +-- +-- Name: pretixapi_oauthidtoken_organizers pretixapi_oauthidtoken_organizers_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthidtoken_organizers + ADD CONSTRAINT pretixapi_oauthidtoken_organizers_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_oauthidtoken pretixapi_oauthidtoken_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthidtoken + ADD CONSTRAINT pretixapi_oauthidtoken_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_oauthrefreshtoken pretixapi_oauthrefreshtoken_access_token_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthrefreshtoken + ADD CONSTRAINT pretixapi_oauthrefreshtoken_access_token_id_key UNIQUE (access_token_id); + + +-- +-- Name: pretixapi_oauthrefreshtoken pretixapi_oauthrefreshtoken_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthrefreshtoken + ADD CONSTRAINT pretixapi_oauthrefreshtoken_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_oauthrefreshtoken pretixapi_oauthrefreshtoken_token_revoked_677b5bd0_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthrefreshtoken + ADD CONSTRAINT pretixapi_oauthrefreshtoken_token_revoked_677b5bd0_uniq UNIQUE (token, revoked); + + +-- +-- Name: pretixapi_webhook_limit_events pretixapi_webhook_limit__webhook_id_event_id_12b0d459_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhook_limit_events + ADD CONSTRAINT pretixapi_webhook_limit__webhook_id_event_id_12b0d459_uniq UNIQUE (webhook_id, event_id); + + +-- +-- Name: pretixapi_webhook_limit_events pretixapi_webhook_limit_events_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhook_limit_events + ADD CONSTRAINT pretixapi_webhook_limit_events_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_webhook pretixapi_webhook_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhook + ADD CONSTRAINT pretixapi_webhook_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_webhookcall pretixapi_webhookcall_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhookcall + ADD CONSTRAINT pretixapi_webhookcall_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_webhookcallretry pretixapi_webhookcallretry_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhookcallretry + ADD CONSTRAINT pretixapi_webhookcallretry_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixapi_webhookcallretry pretixapi_webhookcallretry_webhook_id_logentry_id_68d0b7d3_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhookcallretry + ADD CONSTRAINT pretixapi_webhookcallretry_webhook_id_logentry_id_68d0b7d3_uniq UNIQUE (webhook_id, logentry_id); + + +-- +-- Name: pretixapi_webhookeventlistener pretixapi_webhookeventlistener_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhookeventlistener + ADD CONSTRAINT pretixapi_webhookeventlistener_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_attendeeprofile pretixbase_attendeeprofile_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_attendeeprofile + ADD CONSTRAINT pretixbase_attendeeprofile_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_blockedticketsecret pretixbase_blockedticketsecret_event_id_secret_c21abc80_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_blockedticketsecret + ADD CONSTRAINT pretixbase_blockedticketsecret_event_id_secret_c21abc80_uniq UNIQUE (event_id, secret); + + +-- +-- Name: pretixbase_blockedticketsecret pretixbase_blockedticketsecret_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_blockedticketsecret + ADD CONSTRAINT pretixbase_blockedticketsecret_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_cachedcombinedticket pretixbase_cachedcombinedticket_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cachedcombinedticket + ADD CONSTRAINT pretixbase_cachedcombinedticket_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_cachedfile pretixbase_cachedfile_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cachedfile + ADD CONSTRAINT pretixbase_cachedfile_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_cachedticket pretixbase_cachedticket_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cachedticket + ADD CONSTRAINT pretixbase_cachedticket_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_cancellationrequest pretixbase_cancellationrequest_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cancellationrequest + ADD CONSTRAINT pretixbase_cancellationrequest_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposition_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposition_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_checkinlist_gates pretixbase_checkinlist_g_checkinlist_id_gate_id_6066e043_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist_gates + ADD CONSTRAINT pretixbase_checkinlist_g_checkinlist_id_gate_id_6066e043_uniq UNIQUE (checkinlist_id, gate_id); + + +-- +-- Name: pretixbase_checkinlist_gates pretixbase_checkinlist_gates_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist_gates + ADD CONSTRAINT pretixbase_checkinlist_gates_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_checkinlist_limit_products pretixbase_checkinlist_l_checkinlist_id_item_id_ba1c66d0_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist_limit_products + ADD CONSTRAINT pretixbase_checkinlist_l_checkinlist_id_item_id_ba1c66d0_uniq UNIQUE (checkinlist_id, item_id); + + +-- +-- Name: pretixbase_checkinlist_limit_products pretixbase_checkinlist_limit_products_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist_limit_products + ADD CONSTRAINT pretixbase_checkinlist_limit_products_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_checkinlist pretixbase_checkinlist_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist + ADD CONSTRAINT pretixbase_checkinlist_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_customer pretixbase_customer_organizer_id_email_af86942e_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customer + ADD CONSTRAINT pretixbase_customer_organizer_id_email_af86942e_uniq UNIQUE (organizer_id, email); + + +-- +-- Name: pretixbase_customer pretixbase_customer_organizer_id_identifier_5f5978fe_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customer + ADD CONSTRAINT pretixbase_customer_organizer_id_identifier_5f5978fe_uniq UNIQUE (organizer_id, identifier); + + +-- +-- Name: pretixbase_customer pretixbase_customer_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customer + ADD CONSTRAINT pretixbase_customer_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_customerssoaccesstoken pretixbase_customerssoaccesstoken_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssoaccesstoken + ADD CONSTRAINT pretixbase_customerssoaccesstoken_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_customerssoaccesstoken pretixbase_customerssoaccesstoken_token_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssoaccesstoken + ADD CONSTRAINT pretixbase_customerssoaccesstoken_token_key UNIQUE (token); + + +-- +-- Name: pretixbase_customerssoclient pretixbase_customerssoclient_client_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssoclient + ADD CONSTRAINT pretixbase_customerssoclient_client_id_key UNIQUE (client_id); + + +-- +-- Name: pretixbase_customerssoclient pretixbase_customerssoclient_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssoclient + ADD CONSTRAINT pretixbase_customerssoclient_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_customerssogrant pretixbase_customerssogrant_code_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssogrant + ADD CONSTRAINT pretixbase_customerssogrant_code_key UNIQUE (code); + + +-- +-- Name: pretixbase_customerssogrant pretixbase_customerssogrant_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssogrant + ADD CONSTRAINT pretixbase_customerssogrant_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_customerssoprovider pretixbase_customerssoprovider_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssoprovider + ADD CONSTRAINT pretixbase_customerssoprovider_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_device pretixbase_device_api_token_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device + ADD CONSTRAINT pretixbase_device_api_token_key UNIQUE (api_token); + + +-- +-- Name: pretixbase_device pretixbase_device_initialization_token_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device + ADD CONSTRAINT pretixbase_device_initialization_token_key UNIQUE (initialization_token); + + +-- +-- Name: pretixbase_device_limit_events pretixbase_device_limit_events_device_id_event_id_0946afc6_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device_limit_events + ADD CONSTRAINT pretixbase_device_limit_events_device_id_event_id_0946afc6_uniq UNIQUE (device_id, event_id); + + +-- +-- Name: pretixbase_device_limit_events pretixbase_device_limit_events_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device_limit_events + ADD CONSTRAINT pretixbase_device_limit_events_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_device pretixbase_device_organizer_id_device_id_524c771f_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device + ADD CONSTRAINT pretixbase_device_organizer_id_device_id_524c771f_uniq UNIQUE (organizer_id, device_id); + + +-- +-- Name: pretixbase_device pretixbase_device_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device + ADD CONSTRAINT pretixbase_device_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_device pretixbase_device_unique_serial_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device + ADD CONSTRAINT pretixbase_device_unique_serial_key UNIQUE (unique_serial); + + +-- +-- Name: pretixbase_discount_benefit_limit_products pretixbase_discount_bene_discount_id_item_id_f09cc2cc_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_benefit_limit_products + ADD CONSTRAINT pretixbase_discount_bene_discount_id_item_id_f09cc2cc_uniq UNIQUE (discount_id, item_id); + + +-- +-- Name: pretixbase_discount_benefit_limit_products pretixbase_discount_benefit_limit_products_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_benefit_limit_products + ADD CONSTRAINT pretixbase_discount_benefit_limit_products_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_discount_condition_limit_products pretixbase_discount_cond_discount_id_item_id_f26cb627_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_condition_limit_products + ADD CONSTRAINT pretixbase_discount_cond_discount_id_item_id_f26cb627_uniq UNIQUE (discount_id, item_id); + + +-- +-- Name: pretixbase_discount_condition_limit_products pretixbase_discount_condition_limit_products_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_condition_limit_products + ADD CONSTRAINT pretixbase_discount_condition_limit_products_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_discount_limit_sales_channels pretixbase_discount_limi_discount_id_saleschannel_012ded20_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_limit_sales_channels + ADD CONSTRAINT pretixbase_discount_limi_discount_id_saleschannel_012ded20_uniq UNIQUE (discount_id, saleschannel_id); + + +-- +-- Name: pretixbase_discount_limit_sales_channels pretixbase_discount_limit_sales_channels_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_limit_sales_channels + ADD CONSTRAINT pretixbase_discount_limit_sales_channels_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_discount pretixbase_discount_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount + ADD CONSTRAINT pretixbase_discount_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_event_limit_sales_channels pretixbase_event_limit_s_event_id_saleschannel_id_8998dd40_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event_limit_sales_channels + ADD CONSTRAINT pretixbase_event_limit_s_event_id_saleschannel_id_8998dd40_uniq UNIQUE (event_id, saleschannel_id); + + +-- +-- Name: pretixbase_event_limit_sales_channels pretixbase_event_limit_sales_channels_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event_limit_sales_channels + ADD CONSTRAINT pretixbase_event_limit_sales_channels_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_event pretixbase_event_organizer_id_slug_ef87d553_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event + ADD CONSTRAINT pretixbase_event_organizer_id_slug_ef87d553_uniq UNIQUE (organizer_id, slug); + + +-- +-- Name: pretixbase_event pretixbase_event_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event + ADD CONSTRAINT pretixbase_event_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_eventfooterlink pretixbase_eventfooterlink_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_eventfooterlink + ADD CONSTRAINT pretixbase_eventfooterlink_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_eventlock pretixbase_eventlock_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_eventlock + ADD CONSTRAINT pretixbase_eventlock_pkey PRIMARY KEY (event); + + +-- +-- Name: pretixbase_eventmetaproperty pretixbase_eventmetaproperty_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_eventmetaproperty + ADD CONSTRAINT pretixbase_eventmetaproperty_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_eventmetavalue pretixbase_eventmetavalue_event_id_property_id_1844697e_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_eventmetavalue + ADD CONSTRAINT pretixbase_eventmetavalue_event_id_property_id_1844697e_uniq UNIQUE (event_id, property_id); + + +-- +-- Name: pretixbase_eventmetavalue pretixbase_eventmetavalue_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_eventmetavalue + ADD CONSTRAINT pretixbase_eventmetavalue_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_event_settingsstore pretixbase_eventsetting_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event_settingsstore + ADD CONSTRAINT pretixbase_eventsetting_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_exchangerate pretixbase_exchangerate_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_exchangerate + ADD CONSTRAINT pretixbase_exchangerate_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_exchangerate pretixbase_exchangerate_source_source_currency_o_22feed73_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_exchangerate + ADD CONSTRAINT pretixbase_exchangerate_source_source_currency_o_22feed73_uniq UNIQUE (source, source_currency, other_currency); + + +-- +-- Name: pretixbase_gate pretixbase_gate_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_gate + ADD CONSTRAINT pretixbase_gate_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_giftcard pretixbase_giftcard_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcard + ADD CONSTRAINT pretixbase_giftcard_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_giftcard pretixbase_giftcard_secret_issuer_id_fcc3d2d1_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcard + ADD CONSTRAINT pretixbase_giftcard_secret_issuer_id_fcc3d2d1_uniq UNIQUE (secret, issuer_id); + + +-- +-- Name: pretixbase_giftcardacceptance pretixbase_giftcardaccep_issuer_id_acceptor_id_bf087667_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardacceptance + ADD CONSTRAINT pretixbase_giftcardaccep_issuer_id_acceptor_id_bf087667_uniq UNIQUE (issuer_id, acceptor_id); + + +-- +-- Name: pretixbase_giftcardacceptance pretixbase_giftcardacceptance_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardacceptance + ADD CONSTRAINT pretixbase_giftcardacceptance_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_giftcardtransaction pretixbase_giftcardtransaction_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardtransaction + ADD CONSTRAINT pretixbase_giftcardtransaction_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_globalsettingsobject_settingsstore pretixbase_globalsettingsobject_settingsstore_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_globalsettingsobject_settingsstore + ADD CONSTRAINT pretixbase_globalsettingsobject_settingsstore_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_historicpassword pretixbase_historicpassword_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_historicpassword + ADD CONSTRAINT pretixbase_historicpassword_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_invoice pretixbase_invoice_organizer_id_prefix_invoice_no_8da728d2_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoice + ADD CONSTRAINT pretixbase_invoice_organizer_id_prefix_invoice_no_8da728d2_uniq UNIQUE (organizer_id, prefix, invoice_no); + + +-- +-- Name: pretixbase_invoice pretixbase_invoice_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoice + ADD CONSTRAINT pretixbase_invoice_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_invoiceaddress pretixbase_invoiceaddress_order_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoiceaddress + ADD CONSTRAINT pretixbase_invoiceaddress_order_id_key UNIQUE (order_id); + + +-- +-- Name: pretixbase_invoiceaddress pretixbase_invoiceaddress_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoiceaddress + ADD CONSTRAINT pretixbase_invoiceaddress_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_invoiceline pretixbase_invoiceline_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoiceline + ADD CONSTRAINT pretixbase_invoiceline_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_item_limit_sales_channels pretixbase_item_limit_sa_item_id_saleschannel_id_6b565cf1_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item_limit_sales_channels + ADD CONSTRAINT pretixbase_item_limit_sa_item_id_saleschannel_id_6b565cf1_uniq UNIQUE (item_id, saleschannel_id); + + +-- +-- Name: pretixbase_item_limit_sales_channels pretixbase_item_limit_sales_channels_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item_limit_sales_channels + ADD CONSTRAINT pretixbase_item_limit_sales_channels_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_item pretixbase_item_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item + ADD CONSTRAINT pretixbase_item_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_item_require_membership_types pretixbase_item_require__item_id_membershiptype_i_e0043078_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item_require_membership_types + ADD CONSTRAINT pretixbase_item_require__item_id_membershiptype_i_e0043078_uniq UNIQUE (item_id, membershiptype_id); + + +-- +-- Name: pretixbase_item_require_membership_types pretixbase_item_require_membership_types_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item_require_membership_types + ADD CONSTRAINT pretixbase_item_require_membership_types_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itemaddon pretixbase_itemaddon_base_item_id_addon_categ_8e09fedf_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemaddon + ADD CONSTRAINT pretixbase_itemaddon_base_item_id_addon_categ_8e09fedf_uniq UNIQUE (base_item_id, addon_category_id); + + +-- +-- Name: pretixbase_itemaddon pretixbase_itemaddon_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemaddon + ADD CONSTRAINT pretixbase_itemaddon_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itembundle pretixbase_itembundle_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itembundle + ADD CONSTRAINT pretixbase_itembundle_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itemcategory_cross_selling_match_products pretixbase_itemcategory__itemcategory_id_item_id_060151e3_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemcategory_cross_selling_match_products + ADD CONSTRAINT pretixbase_itemcategory__itemcategory_id_item_id_060151e3_uniq UNIQUE (itemcategory_id, item_id); + + +-- +-- Name: pretixbase_itemcategory_cross_selling_match_products pretixbase_itemcategory_cross_selling_match_products_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemcategory_cross_selling_match_products + ADD CONSTRAINT pretixbase_itemcategory_cross_selling_match_products_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itemcategory pretixbase_itemcategory_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemcategory + ADD CONSTRAINT pretixbase_itemcategory_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itemmetaproperty pretixbase_itemmetaproperty_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemmetaproperty + ADD CONSTRAINT pretixbase_itemmetaproperty_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itemmetavalue pretixbase_itemmetavalue_item_id_property_id_d2a9bd99_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemmetavalue + ADD CONSTRAINT pretixbase_itemmetavalue_item_id_property_id_d2a9bd99_uniq UNIQUE (item_id, property_id); + + +-- +-- Name: pretixbase_itemmetavalue pretixbase_itemmetavalue_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemmetavalue + ADD CONSTRAINT pretixbase_itemmetavalue_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itemvariation_require_membership_types pretixbase_itemvariation_itemvariation_id_members_05ea5eaf_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation_require_membership_types + ADD CONSTRAINT pretixbase_itemvariation_itemvariation_id_members_05ea5eaf_uniq UNIQUE (itemvariation_id, membershiptype_id); + + +-- +-- Name: pretixbase_itemvariation_limit_sales_channels pretixbase_itemvariation_itemvariation_id_salesch_f630e5a9_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation_limit_sales_channels + ADD CONSTRAINT pretixbase_itemvariation_itemvariation_id_salesch_f630e5a9_uniq UNIQUE (itemvariation_id, saleschannel_id); + + +-- +-- Name: pretixbase_itemvariation_limit_sales_channels pretixbase_itemvariation_limit_sales_channels_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation_limit_sales_channels + ADD CONSTRAINT pretixbase_itemvariation_limit_sales_channels_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itemvariation pretixbase_itemvariation_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation + ADD CONSTRAINT pretixbase_itemvariation_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itemvariation_require_membership_types pretixbase_itemvariation_require_membership_types_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation_require_membership_types + ADD CONSTRAINT pretixbase_itemvariation_require_membership_types_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_itemvariationmetavalue pretixbase_itemvariation_variation_id_property_id_5958d106_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariationmetavalue + ADD CONSTRAINT pretixbase_itemvariation_variation_id_property_id_5958d106_uniq UNIQUE (variation_id, property_id); + + +-- +-- Name: pretixbase_itemvariationmetavalue pretixbase_itemvariationmetavalue_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariationmetavalue + ADD CONSTRAINT pretixbase_itemvariationmetavalue_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_logentry pretixbase_logentry_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_logentry + ADD CONSTRAINT pretixbase_logentry_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_mediumkeyset pretixbase_mediumkeyset_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_mediumkeyset + ADD CONSTRAINT pretixbase_mediumkeyset_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_mediumkeyset pretixbase_mediumkeyset_public_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_mediumkeyset + ADD CONSTRAINT pretixbase_mediumkeyset_public_id_key UNIQUE (public_id); + + +-- +-- Name: pretixbase_membership pretixbase_membership_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_membership + ADD CONSTRAINT pretixbase_membership_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_membershiptype pretixbase_membershiptype_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_membershiptype + ADD CONSTRAINT pretixbase_membershiptype_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_notificationsetting pretixbase_notifications_user_id_action_type_even_8efd2fd1_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_notificationsetting + ADD CONSTRAINT pretixbase_notifications_user_id_action_type_even_8efd2fd1_uniq UNIQUE (user_id, action_type, event_id, method); + + +-- +-- Name: pretixbase_notificationsetting pretixbase_notificationsetting_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_notificationsetting + ADD CONSTRAINT pretixbase_notificationsetting_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_order pretixbase_order_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_order + ADD CONSTRAINT pretixbase_order_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_orderfee pretixbase_orderfee_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderfee + ADD CONSTRAINT pretixbase_orderfee_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_orderpayment pretixbase_orderpayment_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderpayment + ADD CONSTRAINT pretixbase_orderpayment_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_pseudonymization_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_pseudonymization_id_key UNIQUE (pseudonymization_id); + + +-- +-- Name: pretixbase_orderrefund pretixbase_orderrefund_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderrefund + ADD CONSTRAINT pretixbase_orderrefund_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_organizer pretixbase_organizer_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_organizer + ADD CONSTRAINT pretixbase_organizer_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_organizer pretixbase_organizer_slug_8ef8a925_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_organizer + ADD CONSTRAINT pretixbase_organizer_slug_8ef8a925_uniq UNIQUE (slug); + + +-- +-- Name: pretixbase_organizerfooterlink pretixbase_organizerfooterlink_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_organizerfooterlink + ADD CONSTRAINT pretixbase_organizerfooterlink_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_organizer_settingsstore pretixbase_organizersetting_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_organizer_settingsstore + ADD CONSTRAINT pretixbase_organizersetting_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_printlog pretixbase_printlog_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_printlog + ADD CONSTRAINT pretixbase_printlog_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_question pretixbase_question_event_id_identifier_3a41c0ef_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_question + ADD CONSTRAINT pretixbase_question_event_id_identifier_3a41c0ef_uniq UNIQUE (event_id, identifier); + + +-- +-- Name: pretixbase_question_items pretixbase_question_items_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_question_items + ADD CONSTRAINT pretixbase_question_items_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_question_items pretixbase_question_items_question_id_item_id_ff34e83a_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_question_items + ADD CONSTRAINT pretixbase_question_items_question_id_item_id_ff34e83a_uniq UNIQUE (question_id, item_id); + + +-- +-- Name: pretixbase_question pretixbase_question_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_question + ADD CONSTRAINT pretixbase_question_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_questionanswer pretixbase_questionanswe_cartposition_id_question_7bf7007d_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer + ADD CONSTRAINT pretixbase_questionanswe_cartposition_id_question_7bf7007d_uniq UNIQUE (cartposition_id, question_id); + + +-- +-- Name: pretixbase_questionanswer pretixbase_questionanswe_orderposition_id_questio_757ec579_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer + ADD CONSTRAINT pretixbase_questionanswe_orderposition_id_questio_757ec579_uniq UNIQUE (orderposition_id, question_id); + + +-- +-- Name: pretixbase_questionanswer_options pretixbase_questionanswe_questionanswer_id_questi_8749a3d3_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer_options + ADD CONSTRAINT pretixbase_questionanswe_questionanswer_id_questi_8749a3d3_uniq UNIQUE (questionanswer_id, questionoption_id); + + +-- +-- Name: pretixbase_questionanswer_options pretixbase_questionanswer_options_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer_options + ADD CONSTRAINT pretixbase_questionanswer_options_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_questionanswer pretixbase_questionanswer_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer + ADD CONSTRAINT pretixbase_questionanswer_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_questionoption pretixbase_questionoption_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionoption + ADD CONSTRAINT pretixbase_questionoption_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_quota_items pretixbase_quota_items_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota_items + ADD CONSTRAINT pretixbase_quota_items_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_quota_items pretixbase_quota_items_quota_id_item_id_577011c3_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota_items + ADD CONSTRAINT pretixbase_quota_items_quota_id_item_id_577011c3_uniq UNIQUE (quota_id, item_id); + + +-- +-- Name: pretixbase_quota pretixbase_quota_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota + ADD CONSTRAINT pretixbase_quota_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_quota_variations pretixbase_quota_variati_quota_id_itemvariation_i_0dfadf28_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota_variations + ADD CONSTRAINT pretixbase_quota_variati_quota_id_itemvariation_i_0dfadf28_uniq UNIQUE (quota_id, itemvariation_id); + + +-- +-- Name: pretixbase_quota_variations pretixbase_quota_variations_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota_variations + ADD CONSTRAINT pretixbase_quota_variations_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_reusablemedium pretixbase_reusablemediu_identifier_type_organize_c07df9b7_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_reusablemedium + ADD CONSTRAINT pretixbase_reusablemediu_identifier_type_organize_c07df9b7_uniq UNIQUE (identifier, type, organizer_id); + + +-- +-- Name: pretixbase_reusablemedium pretixbase_reusablemedium_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_reusablemedium + ADD CONSTRAINT pretixbase_reusablemedium_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_revokedticketsecret pretixbase_revokedticketsecret_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_revokedticketsecret + ADD CONSTRAINT pretixbase_revokedticketsecret_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_saleschannel pretixbase_saleschannel_organizer_id_identifier_fb9d1252_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_saleschannel + ADD CONSTRAINT pretixbase_saleschannel_organizer_id_identifier_fb9d1252_uniq UNIQUE (organizer_id, identifier); + + +-- +-- Name: pretixbase_saleschannel pretixbase_saleschannel_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_saleschannel + ADD CONSTRAINT pretixbase_saleschannel_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_scheduledeventexport pretixbase_scheduledeventexport_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_scheduledeventexport + ADD CONSTRAINT pretixbase_scheduledeventexport_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_scheduledorganizerexport pretixbase_scheduledorganizerexport_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_scheduledorganizerexport + ADD CONSTRAINT pretixbase_scheduledorganizerexport_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_seat pretixbase_seat_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seat + ADD CONSTRAINT pretixbase_seat_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_seatcategorymapping pretixbase_seatcategorymapping_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seatcategorymapping + ADD CONSTRAINT pretixbase_seatcategorymapping_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_seatingplan pretixbase_seatingplan_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seatingplan + ADD CONSTRAINT pretixbase_seatingplan_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_staffsession pretixbase_staffsession_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_staffsession + ADD CONSTRAINT pretixbase_staffsession_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_staffsessionauditlog pretixbase_staffsessionauditlog_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_staffsessionauditlog + ADD CONSTRAINT pretixbase_staffsessionauditlog_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_subevent pretixbase_subevent_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subevent + ADD CONSTRAINT pretixbase_subevent_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_subeventitem pretixbase_subeventitem_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subeventitem + ADD CONSTRAINT pretixbase_subeventitem_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_subeventitemvariation pretixbase_subeventitemvariation_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subeventitemvariation + ADD CONSTRAINT pretixbase_subeventitemvariation_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_subeventmetavalue pretixbase_subeventmetav_subevent_id_property_id_429c6af5_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subeventmetavalue + ADD CONSTRAINT pretixbase_subeventmetav_subevent_id_property_id_429c6af5_uniq UNIQUE (subevent_id, property_id); + + +-- +-- Name: pretixbase_subeventmetavalue pretixbase_subeventmetavalue_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subeventmetavalue + ADD CONSTRAINT pretixbase_subeventmetavalue_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_taxrule pretixbase_taxrule_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_taxrule + ADD CONSTRAINT pretixbase_taxrule_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_team_limit_events pretixbase_team_limit_events_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team_limit_events + ADD CONSTRAINT pretixbase_team_limit_events_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_team_limit_events pretixbase_team_limit_events_team_id_event_id_dc3aa150_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team_limit_events + ADD CONSTRAINT pretixbase_team_limit_events_team_id_event_id_dc3aa150_uniq UNIQUE (team_id, event_id); + + +-- +-- Name: pretixbase_team_members pretixbase_team_members_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team_members + ADD CONSTRAINT pretixbase_team_members_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_team_members pretixbase_team_members_team_id_user_id_c5b180ca_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team_members + ADD CONSTRAINT pretixbase_team_members_team_id_user_id_c5b180ca_uniq UNIQUE (team_id, user_id); + + +-- +-- Name: pretixbase_team pretixbase_team_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team + ADD CONSTRAINT pretixbase_team_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_teamapitoken pretixbase_teamapitoken_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_teamapitoken + ADD CONSTRAINT pretixbase_teamapitoken_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_teaminvite pretixbase_teaminvite_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_teaminvite + ADD CONSTRAINT pretixbase_teaminvite_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_transaction pretixbase_transaction_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_transaction + ADD CONSTRAINT pretixbase_transaction_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_u2fdevice pretixbase_u2fdevice_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_u2fdevice + ADD CONSTRAINT pretixbase_u2fdevice_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_user pretixbase_user_auth_backend_auth_backen_8727d359_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user + ADD CONSTRAINT pretixbase_user_auth_backend_auth_backen_8727d359_uniq UNIQUE (auth_backend, auth_backend_identifier); + + +-- +-- Name: pretixbase_user pretixbase_user_email_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user + ADD CONSTRAINT pretixbase_user_email_key UNIQUE (email); + + +-- +-- Name: pretixbase_user_groups pretixbase_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user_groups + ADD CONSTRAINT pretixbase_user_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_user_groups pretixbase_user_groups_user_id_group_id_5129cb6b_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user_groups + ADD CONSTRAINT pretixbase_user_groups_user_id_group_id_5129cb6b_uniq UNIQUE (user_id, group_id); + + +-- +-- Name: pretixbase_user pretixbase_user_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user + ADD CONSTRAINT pretixbase_user_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_user_user_permissions pretixbase_user_user_per_user_id_permission_id_3bd15a95_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user_user_permissions + ADD CONSTRAINT pretixbase_user_user_per_user_id_permission_id_3bd15a95_uniq UNIQUE (user_id, permission_id); + + +-- +-- Name: pretixbase_user_user_permissions pretixbase_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user_user_permissions + ADD CONSTRAINT pretixbase_user_user_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_userknownloginsource pretixbase_userknownloginsource_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_userknownloginsource + ADD CONSTRAINT pretixbase_userknownloginsource_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_voucher pretixbase_voucher_event_id_code_b07c351f_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_voucher + ADD CONSTRAINT pretixbase_voucher_event_id_code_b07c351f_uniq UNIQUE (event_id, code); + + +-- +-- Name: pretixbase_voucher pretixbase_voucher_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_voucher + ADD CONSTRAINT pretixbase_voucher_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_waitinglistentry pretixbase_waitinglistentry_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_waitinglistentry + ADD CONSTRAINT pretixbase_waitinglistentry_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_webauthndevice pretixbase_webauthndevice_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_webauthndevice + ADD CONSTRAINT pretixbase_webauthndevice_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixbase_checkin pretixdroid_checkin_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkin + ADD CONSTRAINT pretixdroid_checkin_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixhelpers_thumbnail pretixhelpers_thumbnail_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixhelpers_thumbnail + ADD CONSTRAINT pretixhelpers_thumbnail_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixhelpers_thumbnail pretixhelpers_thumbnail_source_size_52961027_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixhelpers_thumbnail + ADD CONSTRAINT pretixhelpers_thumbnail_source_size_52961027_uniq UNIQUE (source, size); + + +-- +-- Name: pretixmultidomain_alternativedomainassignment pretixmultidomain_alternativedomainassignment_event_id_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixmultidomain_alternativedomainassignment + ADD CONSTRAINT pretixmultidomain_alternativedomainassignment_event_id_key UNIQUE (event_id); + + +-- +-- Name: pretixmultidomain_alternativedomainassignment pretixmultidomain_alternativedomainassignment_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixmultidomain_alternativedomainassignment + ADD CONSTRAINT pretixmultidomain_alternativedomainassignment_pkey PRIMARY KEY (id); + + +-- +-- Name: pretixmultidomain_knowndomain pretixmultidomain_knowndomain_event_id_4fe10ab5_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixmultidomain_knowndomain + ADD CONSTRAINT pretixmultidomain_knowndomain_event_id_4fe10ab5_uniq UNIQUE (event_id); + + +-- +-- Name: pretixmultidomain_knowndomain pretixmultidomain_knowndomain_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixmultidomain_knowndomain + ADD CONSTRAINT pretixmultidomain_knowndomain_pkey PRIMARY KEY (domainname); + + +-- +-- Name: sendmail_rule_limit_products sendmail_rule_limit_products_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_rule_limit_products + ADD CONSTRAINT sendmail_rule_limit_products_pkey PRIMARY KEY (id); + + +-- +-- Name: sendmail_rule_limit_products sendmail_rule_limit_products_rule_id_item_id_4223e3c7_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_rule_limit_products + ADD CONSTRAINT sendmail_rule_limit_products_rule_id_item_id_4223e3c7_uniq UNIQUE (rule_id, item_id); + + +-- +-- Name: sendmail_rule sendmail_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_rule + ADD CONSTRAINT sendmail_rule_pkey PRIMARY KEY (id); + + +-- +-- Name: sendmail_scheduledmail sendmail_scheduledmail_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_scheduledmail + ADD CONSTRAINT sendmail_scheduledmail_pkey PRIMARY KEY (id); + + +-- +-- Name: sendmail_scheduledmail sendmail_scheduledmail_rule_id_subevent_id_5093251b_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_scheduledmail + ADD CONSTRAINT sendmail_scheduledmail_rule_id_subevent_id_5093251b_uniq UNIQUE (rule_id, subevent_id); + + +-- +-- Name: stripe_referencedstripeobject stripe_referencedstripeobject_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.stripe_referencedstripeobject + ADD CONSTRAINT stripe_referencedstripeobject_pkey PRIMARY KEY (id); + + +-- +-- Name: stripe_referencedstripeobject stripe_referencedstripeobject_reference_key; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.stripe_referencedstripeobject + ADD CONSTRAINT stripe_referencedstripeobject_reference_key UNIQUE (reference); + + +-- +-- Name: stripe_registeredapplepaydomain stripe_registeredapplepaydomain_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.stripe_registeredapplepaydomain + ADD CONSTRAINT stripe_registeredapplepaydomain_pkey PRIMARY KEY (id); + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem ticketoutputpdf_ticketla_item_id_layout_id_sales__e36365a3_uniq; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.ticketoutputpdf_ticketlayoutitem + ADD CONSTRAINT ticketoutputpdf_ticketla_item_id_layout_id_sales__e36365a3_uniq UNIQUE (item_id, layout_id, sales_channel_id); + + +-- +-- Name: ticketoutputpdf_ticketlayout ticketoutputpdf_ticketlayout_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.ticketoutputpdf_ticketlayout + ADD CONSTRAINT ticketoutputpdf_ticketlayout_pkey PRIMARY KEY (id); + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem ticketoutputpdf_ticketlayoutitem_pkey; Type: CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.ticketoutputpdf_ticketlayoutitem + ADD CONSTRAINT ticketoutputpdf_ticketlayoutitem_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: pretix +-- + +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: pretix +-- + +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: pretix +-- + +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: pretix +-- + +CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id); + + +-- +-- Name: autocheckin_autocheckinrul_autocheckinrule_id_00ef3c87; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX autocheckin_autocheckinrul_autocheckinrule_id_00ef3c87 ON public.autocheckin_autocheckinrule_limit_products USING btree (autocheckinrule_id); + + +-- +-- Name: autocheckin_autocheckinrul_autocheckinrule_id_ae5d3b36; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX autocheckin_autocheckinrul_autocheckinrule_id_ae5d3b36 ON public.autocheckin_autocheckinrule_limit_sales_channels USING btree (autocheckinrule_id); + + +-- +-- Name: autocheckin_autocheckinrul_autocheckinrule_id_e90e5fb4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX autocheckin_autocheckinrul_autocheckinrule_id_e90e5fb4 ON public.autocheckin_autocheckinrule_limit_variations USING btree (autocheckinrule_id); + + +-- +-- Name: autocheckin_autocheckinrul_itemvariation_id_65e502bf; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX autocheckin_autocheckinrul_itemvariation_id_65e502bf ON public.autocheckin_autocheckinrule_limit_variations USING btree (itemvariation_id); + + +-- +-- Name: autocheckin_autocheckinrul_saleschannel_id_d140b680; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX autocheckin_autocheckinrul_saleschannel_id_d140b680 ON public.autocheckin_autocheckinrule_limit_sales_channels USING btree (saleschannel_id); + + +-- +-- Name: autocheckin_autocheckinrule_event_id_6d5570a1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX autocheckin_autocheckinrule_event_id_6d5570a1 ON public.autocheckin_autocheckinrule USING btree (event_id); + + +-- +-- Name: autocheckin_autocheckinrule_limit_products_item_id_7bbdbb9f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX autocheckin_autocheckinrule_limit_products_item_id_7bbdbb9f ON public.autocheckin_autocheckinrule_limit_products USING btree (item_id); + + +-- +-- Name: autocheckin_autocheckinrule_list_id_c3a022ee; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX autocheckin_autocheckinrule_list_id_c3a022ee ON public.autocheckin_autocheckinrule USING btree (list_id); + + +-- +-- Name: badges_badgeitem_layout_id_e98e19ee; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX badges_badgeitem_layout_id_e98e19ee ON public.badges_badgeitem USING btree (layout_id); + + +-- +-- Name: badges_badgelayout_event_id_68746277; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX badges_badgelayout_event_id_68746277 ON public.badges_badgelayout USING btree (event_id); + + +-- +-- Name: banktransfer_bankimportjob_event_id_357c0b48; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_bankimportjob_event_id_357c0b48 ON public.banktransfer_bankimportjob USING btree (event_id); + + +-- +-- Name: banktransfer_bankimportjob_organizer_id_77cbeb32; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_bankimportjob_organizer_id_77cbeb32 ON public.banktransfer_bankimportjob USING btree (organizer_id); + + +-- +-- Name: banktransfer_banktransaction_checksum_b4d468c0; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_banktransaction_checksum_b4d468c0 ON public.banktransfer_banktransaction USING btree (checksum); + + +-- +-- Name: banktransfer_banktransaction_checksum_b4d468c0_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_banktransaction_checksum_b4d468c0_like ON public.banktransfer_banktransaction USING btree (checksum varchar_pattern_ops); + + +-- +-- Name: banktransfer_banktransaction_event_id_96ac4f74; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_banktransaction_event_id_96ac4f74 ON public.banktransfer_banktransaction USING btree (event_id); + + +-- +-- Name: banktransfer_banktransaction_external_id_fb6d885a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_banktransaction_external_id_fb6d885a ON public.banktransfer_banktransaction USING btree (external_id); + + +-- +-- Name: banktransfer_banktransaction_external_id_fb6d885a_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_banktransaction_external_id_fb6d885a_like ON public.banktransfer_banktransaction USING btree (external_id varchar_pattern_ops); + + +-- +-- Name: banktransfer_banktransaction_import_job_id_b1439157; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_banktransaction_import_job_id_b1439157 ON public.banktransfer_banktransaction USING btree (import_job_id); + + +-- +-- Name: banktransfer_banktransaction_order_id_f3ac8caf; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_banktransaction_order_id_f3ac8caf ON public.banktransfer_banktransaction USING btree (order_id); + + +-- +-- Name: banktransfer_banktransaction_organizer_id_a1995eea; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_banktransaction_organizer_id_a1995eea ON public.banktransfer_banktransaction USING btree (organizer_id); + + +-- +-- Name: banktransfer_refundexport_event_id_41729994; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_refundexport_event_id_41729994 ON public.banktransfer_refundexport USING btree (event_id); + + +-- +-- Name: banktransfer_refundexport_organizer_id_613c779f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX banktransfer_refundexport_organizer_id_613c779f ON public.banktransfer_refundexport USING btree (organizer_id); + + +-- +-- Name: django_session_expire_date_a5c62663; Type: INDEX; Schema: public; Owner: pretix +-- + +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: pretix +-- + +CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops); + + +-- +-- Name: keyset_unique_active; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE UNIQUE INDEX keyset_unique_active ON public.pretixbase_mediumkeyset USING btree (organizer_id, media_type) WHERE active; + + +-- +-- Name: orderposition_organizer_secret_uniq; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE UNIQUE INDEX orderposition_organizer_secret_uniq ON public.pretixbase_orderposition USING btree (organizer_id, secret); + + +-- +-- Name: otp_static_staticdevice_user_id_7f9cff2b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX otp_static_staticdevice_user_id_7f9cff2b ON public.otp_static_staticdevice USING btree (user_id); + + +-- +-- Name: otp_static_statictoken_device_id_74b7c7d1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX otp_static_statictoken_device_id_74b7c7d1 ON public.otp_static_statictoken USING btree (device_id); + + +-- +-- Name: otp_static_statictoken_token_d0a51866; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX otp_static_statictoken_token_d0a51866 ON public.otp_static_statictoken USING btree (token); + + +-- +-- Name: otp_static_statictoken_token_d0a51866_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX otp_static_statictoken_token_d0a51866_like ON public.otp_static_statictoken USING btree (token varchar_pattern_ops); + + +-- +-- Name: otp_totp_totpdevice_user_id_0fb18292; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX otp_totp_totpdevice_user_id_0fb18292 ON public.otp_totp_totpdevice USING btree (user_id); + + +-- +-- Name: paypal_referencedpaypalobject_order_id_969d6ded; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX paypal_referencedpaypalobject_order_id_969d6ded ON public.paypal_referencedpaypalobject USING btree (order_id); + + +-- +-- Name: paypal_referencedpaypalobject_payment_id_430996e6; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX paypal_referencedpaypalobject_payment_id_430996e6 ON public.paypal_referencedpaypalobject USING btree (payment_id); + + +-- +-- Name: paypal_referencedpaypalobject_reference_dbbb4987_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX paypal_referencedpaypalobject_reference_dbbb4987_like ON public.paypal_referencedpaypalobject USING btree (reference varchar_pattern_ops); + + +-- +-- Name: pretixapi_apicall_auth_hash_583cf520; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_apicall_auth_hash_583cf520 ON public.pretixapi_apicall USING btree (auth_hash); + + +-- +-- Name: pretixapi_apicall_auth_hash_583cf520_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_apicall_auth_hash_583cf520_like ON public.pretixapi_apicall USING btree (auth_hash varchar_pattern_ops); + + +-- +-- Name: pretixapi_apicall_idempotency_key_227357ca; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_apicall_idempotency_key_227357ca ON public.pretixapi_apicall USING btree (idempotency_key); + + +-- +-- Name: pretixapi_apicall_idempotency_key_227357ca_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_apicall_idempotency_key_227357ca_like ON public.pretixapi_apicall USING btree (idempotency_key varchar_pattern_ops); + + +-- +-- Name: pretixapi_oauthaccesstoken_application_id_245596a4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthaccesstoken_application_id_245596a4 ON public.pretixapi_oauthaccesstoken USING btree (application_id); + + +-- +-- Name: pretixapi_oauthaccesstoken_oauthaccesstoken_id_fe612a29; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthaccesstoken_oauthaccesstoken_id_fe612a29 ON public.pretixapi_oauthaccesstoken_organizers USING btree (oauthaccesstoken_id); + + +-- +-- Name: pretixapi_oauthaccesstoken_organizers_organizer_id_226c8320; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthaccesstoken_organizers_organizer_id_226c8320 ON public.pretixapi_oauthaccesstoken_organizers USING btree (organizer_id); + + +-- +-- Name: pretixapi_oauthaccesstoken_token_6f90731e_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthaccesstoken_token_6f90731e_like ON public.pretixapi_oauthaccesstoken USING btree (token varchar_pattern_ops); + + +-- +-- Name: pretixapi_oauthaccesstoken_user_id_13eca036; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthaccesstoken_user_id_13eca036 ON public.pretixapi_oauthaccesstoken USING btree (user_id); + + +-- +-- Name: pretixapi_oauthapplication_client_id_6afc2db6_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthapplication_client_id_6afc2db6_like ON public.pretixapi_oauthapplication USING btree (client_id varchar_pattern_ops); + + +-- +-- Name: pretixapi_oauthapplication_client_secret_7e5b6efb; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthapplication_client_secret_7e5b6efb ON public.pretixapi_oauthapplication USING btree (client_secret); + + +-- +-- Name: pretixapi_oauthapplication_client_secret_7e5b6efb_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthapplication_client_secret_7e5b6efb_like ON public.pretixapi_oauthapplication USING btree (client_secret varchar_pattern_ops); + + +-- +-- Name: pretixapi_oauthapplication_user_id_5c13458d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthapplication_user_id_5c13458d ON public.pretixapi_oauthapplication USING btree (user_id); + + +-- +-- Name: pretixapi_oauthgrant_application_id_9862c02b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthgrant_application_id_9862c02b ON public.pretixapi_oauthgrant USING btree (application_id); + + +-- +-- Name: pretixapi_oauthgrant_code_445d15d4_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthgrant_code_445d15d4_like ON public.pretixapi_oauthgrant USING btree (code varchar_pattern_ops); + + +-- +-- Name: pretixapi_oauthgrant_organizers_oauthgrant_id_993176dd; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthgrant_organizers_oauthgrant_id_993176dd ON public.pretixapi_oauthgrant_organizers USING btree (oauthgrant_id); + + +-- +-- Name: pretixapi_oauthgrant_organizers_organizer_id_96dfce8f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthgrant_organizers_organizer_id_96dfce8f ON public.pretixapi_oauthgrant_organizers USING btree (organizer_id); + + +-- +-- Name: pretixapi_oauthgrant_user_id_62abb1d8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthgrant_user_id_62abb1d8 ON public.pretixapi_oauthgrant USING btree (user_id); + + +-- +-- Name: pretixapi_oauthidtoken_application_id_5b429f07; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthidtoken_application_id_5b429f07 ON public.pretixapi_oauthidtoken USING btree (application_id); + + +-- +-- Name: pretixapi_oauthidtoken_organizers_oauthidtoken_id_1798dd46; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthidtoken_organizers_oauthidtoken_id_1798dd46 ON public.pretixapi_oauthidtoken_organizers USING btree (oauthidtoken_id); + + +-- +-- Name: pretixapi_oauthidtoken_organizers_organizer_id_c1aaee61; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthidtoken_organizers_organizer_id_c1aaee61 ON public.pretixapi_oauthidtoken_organizers USING btree (organizer_id); + + +-- +-- Name: pretixapi_oauthidtoken_user_id_75c907e8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthidtoken_user_id_75c907e8 ON public.pretixapi_oauthidtoken USING btree (user_id); + + +-- +-- Name: pretixapi_oauthrefreshtoken_application_id_a7e865e1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthrefreshtoken_application_id_a7e865e1 ON public.pretixapi_oauthrefreshtoken USING btree (application_id); + + +-- +-- Name: pretixapi_oauthrefreshtoken_user_id_a24feddf; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_oauthrefreshtoken_user_id_a24feddf ON public.pretixapi_oauthrefreshtoken USING btree (user_id); + + +-- +-- Name: pretixapi_webhook_limit_events_event_id_76919dfd; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_webhook_limit_events_event_id_76919dfd ON public.pretixapi_webhook_limit_events USING btree (event_id); + + +-- +-- Name: pretixapi_webhook_limit_events_webhook_id_763c4a3f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_webhook_limit_events_webhook_id_763c4a3f ON public.pretixapi_webhook_limit_events USING btree (webhook_id); + + +-- +-- Name: pretixapi_webhook_organizer_id_10a41f04; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_webhook_organizer_id_10a41f04 ON public.pretixapi_webhook USING btree (organizer_id); + + +-- +-- Name: pretixapi_webhookcall_webhook_id_e138c438; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_webhookcall_webhook_id_e138c438 ON public.pretixapi_webhookcall USING btree (webhook_id); + + +-- +-- Name: pretixapi_webhookcallretry_logentry_id_3b11ec45; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_webhookcallretry_logentry_id_3b11ec45 ON public.pretixapi_webhookcallretry USING btree (logentry_id); + + +-- +-- Name: pretixapi_webhookcallretry_webhook_id_a598b82c; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_webhookcallretry_webhook_id_a598b82c ON public.pretixapi_webhookcallretry USING btree (webhook_id); + + +-- +-- Name: pretixapi_webhookeventlistener_webhook_id_5518ad8d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixapi_webhookeventlistener_webhook_id_5518ad8d ON public.pretixapi_webhookeventlistener USING btree (webhook_id); + + +-- +-- Name: pretixbase__datetim_66aff0_idx; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase__datetim_66aff0_idx ON public.pretixbase_order USING btree (datetime, id); + + +-- +-- Name: pretixbase__datetim_b1fe5a_idx; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase__datetim_b1fe5a_idx ON public.pretixbase_logentry USING btree (datetime, id); + + +-- +-- Name: pretixbase__datetim_b20405_idx; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase__datetim_b20405_idx ON public.pretixbase_transaction USING btree (datetime, id); + + +-- +-- Name: pretixbase__last_mo_4ebf8b_idx; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase__last_mo_4ebf8b_idx ON public.pretixbase_order USING btree (last_modified, id); + + +-- +-- Name: pretixbase__updated_093277_idx; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase__updated_093277_idx ON public.pretixbase_reusablemedium USING btree (updated, id); + + +-- +-- Name: pretixbase_attendeeprofile_customer_id_847a5c3a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_attendeeprofile_customer_id_847a5c3a ON public.pretixbase_attendeeprofile USING btree (customer_id); + + +-- +-- Name: pretixbase_blockedticketsecret_event_id_9759946f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_blockedticketsecret_event_id_9759946f ON public.pretixbase_blockedticketsecret USING btree (event_id); + + +-- +-- Name: pretixbase_blockedticketsecret_position_id_0f3564d1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_blockedticketsecret_position_id_0f3564d1 ON public.pretixbase_blockedticketsecret USING btree (position_id); + + +-- +-- Name: pretixbase_blockedticketsecret_secret_f7b6037c; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_blockedticketsecret_secret_f7b6037c ON public.pretixbase_blockedticketsecret USING btree (secret); + + +-- +-- Name: pretixbase_blockedticketsecret_secret_f7b6037c_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_blockedticketsecret_secret_f7b6037c_like ON public.pretixbase_blockedticketsecret USING btree (secret text_pattern_ops); + + +-- +-- Name: pretixbase_cachedcombinedticket_order_id_45509bc4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cachedcombinedticket_order_id_45509bc4 ON public.pretixbase_cachedcombinedticket USING btree (order_id); + + +-- +-- Name: pretixbase_cachedticket_order_position_id_b2c232a6; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cachedticket_order_position_id_b2c232a6 ON public.pretixbase_cachedticket USING btree (order_position_id); + + +-- +-- Name: pretixbase_cancellationrequest_order_id_5a61ecf9; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cancellationrequest_order_id_5a61ecf9 ON public.pretixbase_cancellationrequest USING btree (order_id); + + +-- +-- Name: pretixbase_cartposition_addon_to_id_d9ab2dee; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_addon_to_id_d9ab2dee ON public.pretixbase_cartposition USING btree (addon_to_id); + + +-- +-- Name: pretixbase_cartposition_cart_id_9d9be54b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_cart_id_9d9be54b ON public.pretixbase_cartposition USING btree (cart_id); + + +-- +-- Name: pretixbase_cartposition_cart_id_9d9be54b_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_cart_id_9d9be54b_like ON public.pretixbase_cartposition USING btree (cart_id varchar_pattern_ops); + + +-- +-- Name: pretixbase_cartposition_discount_id_ee598399; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_discount_id_ee598399 ON public.pretixbase_cartposition USING btree (discount_id); + + +-- +-- Name: pretixbase_cartposition_event_id_c8039949; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_event_id_c8039949 ON public.pretixbase_cartposition USING btree (event_id); + + +-- +-- Name: pretixbase_cartposition_expires_d987d4e5; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_expires_d987d4e5 ON public.pretixbase_cartposition USING btree (expires); + + +-- +-- Name: pretixbase_cartposition_item_id_453bc23d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_item_id_453bc23d ON public.pretixbase_cartposition USING btree (item_id); + + +-- +-- Name: pretixbase_cartposition_seat_id_1b6c3faf; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_seat_id_1b6c3faf ON public.pretixbase_cartposition USING btree (seat_id); + + +-- +-- Name: pretixbase_cartposition_subevent_id_8adb3b32; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_subevent_id_8adb3b32 ON public.pretixbase_cartposition USING btree (subevent_id); + + +-- +-- Name: pretixbase_cartposition_used_membership_id_50406d4a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_used_membership_id_50406d4a ON public.pretixbase_cartposition USING btree (used_membership_id); + + +-- +-- Name: pretixbase_cartposition_variation_id_af1f0dfd; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_variation_id_af1f0dfd ON public.pretixbase_cartposition USING btree (variation_id); + + +-- +-- Name: pretixbase_cartposition_voucher_id_a79e1879; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_cartposition_voucher_id_a79e1879 ON public.pretixbase_cartposition USING btree (voucher_id); + + +-- +-- Name: pretixbase_checkin_device_id_b7b00655; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkin_device_id_b7b00655 ON public.pretixbase_checkin USING btree (device_id); + + +-- +-- Name: pretixbase_checkin_gate_id_be6dcaba; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkin_gate_id_be6dcaba ON public.pretixbase_checkin USING btree (gate_id); + + +-- +-- Name: pretixbase_checkin_list_id_edd48d9f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkin_list_id_edd48d9f ON public.pretixbase_checkin USING btree (list_id); + + +-- +-- Name: pretixbase_checkin_raw_item_id_30958c24; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkin_raw_item_id_30958c24 ON public.pretixbase_checkin USING btree (raw_item_id); + + +-- +-- Name: pretixbase_checkin_raw_subevent_id_2524e6b7; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkin_raw_subevent_id_2524e6b7 ON public.pretixbase_checkin USING btree (raw_subevent_id); + + +-- +-- Name: pretixbase_checkin_raw_variation_id_7a127580; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkin_raw_variation_id_7a127580 ON public.pretixbase_checkin USING btree (raw_variation_id); + + +-- +-- Name: pretixbase_checkinlist_event_id_cf987659; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkinlist_event_id_cf987659 ON public.pretixbase_checkinlist USING btree (event_id); + + +-- +-- Name: pretixbase_checkinlist_gates_checkinlist_id_a02b8e74; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkinlist_gates_checkinlist_id_a02b8e74 ON public.pretixbase_checkinlist_gates USING btree (checkinlist_id); + + +-- +-- Name: pretixbase_checkinlist_gates_gate_id_0416bd0f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkinlist_gates_gate_id_0416bd0f ON public.pretixbase_checkinlist_gates USING btree (gate_id); + + +-- +-- Name: pretixbase_checkinlist_limit_products_checkinlist_id_95aa970b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkinlist_limit_products_checkinlist_id_95aa970b ON public.pretixbase_checkinlist_limit_products USING btree (checkinlist_id); + + +-- +-- Name: pretixbase_checkinlist_limit_products_item_id_d88aefb1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkinlist_limit_products_item_id_d88aefb1 ON public.pretixbase_checkinlist_limit_products USING btree (item_id); + + +-- +-- Name: pretixbase_checkinlist_subevent_id_bd5b8106; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_checkinlist_subevent_id_bd5b8106 ON public.pretixbase_checkinlist USING btree (subevent_id); + + +-- +-- Name: pretixbase_customer_email_0fc8932b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customer_email_0fc8932b ON public.pretixbase_customer USING btree (email); + + +-- +-- Name: pretixbase_customer_email_0fc8932b_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customer_email_0fc8932b_like ON public.pretixbase_customer USING btree (email varchar_pattern_ops); + + +-- +-- Name: pretixbase_customer_identifier_fd8636fc; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customer_identifier_fd8636fc ON public.pretixbase_customer USING btree (identifier); + + +-- +-- Name: pretixbase_customer_identifier_fd8636fc_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customer_identifier_fd8636fc_like ON public.pretixbase_customer USING btree (identifier varchar_pattern_ops); + + +-- +-- Name: pretixbase_customer_organizer_id_f65b87f8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customer_organizer_id_f65b87f8 ON public.pretixbase_customer USING btree (organizer_id); + + +-- +-- Name: pretixbase_customer_provider_id_143d6a89; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customer_provider_id_143d6a89 ON public.pretixbase_customer USING btree (provider_id); + + +-- +-- Name: pretixbase_customerssoaccesstoken_client_id_f7d43671; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customerssoaccesstoken_client_id_f7d43671 ON public.pretixbase_customerssoaccesstoken USING btree (client_id); + + +-- +-- Name: pretixbase_customerssoaccesstoken_customer_id_f03b0bae; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customerssoaccesstoken_customer_id_f03b0bae ON public.pretixbase_customerssoaccesstoken USING btree (customer_id); + + +-- +-- Name: pretixbase_customerssoaccesstoken_token_0ea2ab1d_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customerssoaccesstoken_token_0ea2ab1d_like ON public.pretixbase_customerssoaccesstoken USING btree (token varchar_pattern_ops); + + +-- +-- Name: pretixbase_customerssoclient_client_id_cbea1ef4_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customerssoclient_client_id_cbea1ef4_like ON public.pretixbase_customerssoclient USING btree (client_id varchar_pattern_ops); + + +-- +-- Name: pretixbase_customerssoclient_organizer_id_d84ecb5e; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customerssoclient_organizer_id_d84ecb5e ON public.pretixbase_customerssoclient USING btree (organizer_id); + + +-- +-- Name: pretixbase_customerssogrant_client_id_fd3ca1c0; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customerssogrant_client_id_fd3ca1c0 ON public.pretixbase_customerssogrant USING btree (client_id); + + +-- +-- Name: pretixbase_customerssogrant_code_ff19be0d_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customerssogrant_code_ff19be0d_like ON public.pretixbase_customerssogrant USING btree (code varchar_pattern_ops); + + +-- +-- Name: pretixbase_customerssogrant_customer_id_1e011d8e; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customerssogrant_customer_id_1e011d8e ON public.pretixbase_customerssogrant USING btree (customer_id); + + +-- +-- Name: pretixbase_customerssoprovider_organizer_id_a6716a65; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_customerssoprovider_organizer_id_a6716a65 ON public.pretixbase_customerssoprovider USING btree (organizer_id); + + +-- +-- Name: pretixbase_device_api_token_82966cb9_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_device_api_token_82966cb9_like ON public.pretixbase_device USING btree (api_token varchar_pattern_ops); + + +-- +-- Name: pretixbase_device_gate_id_eea62af2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_device_gate_id_eea62af2 ON public.pretixbase_device USING btree (gate_id); + + +-- +-- Name: pretixbase_device_initialization_token_4e961dd8_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_device_initialization_token_4e961dd8_like ON public.pretixbase_device USING btree (initialization_token varchar_pattern_ops); + + +-- +-- Name: pretixbase_device_limit_events_device_id_8c1335ff; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_device_limit_events_device_id_8c1335ff ON public.pretixbase_device_limit_events USING btree (device_id); + + +-- +-- Name: pretixbase_device_limit_events_event_id_cabc9720; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_device_limit_events_event_id_cabc9720 ON public.pretixbase_device_limit_events USING btree (event_id); + + +-- +-- Name: pretixbase_device_organizer_id_1fab75fa; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_device_organizer_id_1fab75fa ON public.pretixbase_device USING btree (organizer_id); + + +-- +-- Name: pretixbase_device_unique_serial_66755f99_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_device_unique_serial_66755f99_like ON public.pretixbase_device USING btree (unique_serial varchar_pattern_ops); + + +-- +-- Name: pretixbase_discount_benefit_limit_products_discount_id_0c578277; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_discount_benefit_limit_products_discount_id_0c578277 ON public.pretixbase_discount_benefit_limit_products USING btree (discount_id); + + +-- +-- Name: pretixbase_discount_benefit_limit_products_item_id_35f5bdf8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_discount_benefit_limit_products_item_id_35f5bdf8 ON public.pretixbase_discount_benefit_limit_products USING btree (item_id); + + +-- +-- Name: pretixbase_discount_condit_discount_id_2268392e; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_discount_condit_discount_id_2268392e ON public.pretixbase_discount_condition_limit_products USING btree (discount_id); + + +-- +-- Name: pretixbase_discount_condition_limit_products_item_id_b895c6c9; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_discount_condition_limit_products_item_id_b895c6c9 ON public.pretixbase_discount_condition_limit_products USING btree (item_id); + + +-- +-- Name: pretixbase_discount_event_id_15ffc96d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_discount_event_id_15ffc96d ON public.pretixbase_discount USING btree (event_id); + + +-- +-- Name: pretixbase_discount_limit__saleschannel_id_a7fc9bb6; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_discount_limit__saleschannel_id_a7fc9bb6 ON public.pretixbase_discount_limit_sales_channels USING btree (saleschannel_id); + + +-- +-- Name: pretixbase_discount_limit_sales_channels_discount_id_50a082b2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_discount_limit_sales_channels_discount_id_50a082b2 ON public.pretixbase_discount_limit_sales_channels USING btree (discount_id); + + +-- +-- Name: pretixbase_event_last_modified_fe031b38; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_event_last_modified_fe031b38 ON public.pretixbase_event USING btree (last_modified); + + +-- +-- Name: pretixbase_event_limit_sales_channels_event_id_c350f35d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_event_limit_sales_channels_event_id_c350f35d ON public.pretixbase_event_limit_sales_channels USING btree (event_id); + + +-- +-- Name: pretixbase_event_limit_sales_channels_saleschannel_id_bfb671ec; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_event_limit_sales_channels_saleschannel_id_bfb671ec ON public.pretixbase_event_limit_sales_channels USING btree (saleschannel_id); + + +-- +-- Name: pretixbase_event_organizer_id_f31b86fa; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_event_organizer_id_f31b86fa ON public.pretixbase_event USING btree (organizer_id); + + +-- +-- Name: pretixbase_event_seating_plan_id_11bc56fa; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_event_seating_plan_id_11bc56fa ON public.pretixbase_event USING btree (seating_plan_id); + + +-- +-- Name: pretixbase_event_slug_8033ce26; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_event_slug_8033ce26 ON public.pretixbase_event USING btree (slug); + + +-- +-- Name: pretixbase_event_slug_8033ce26_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_event_slug_8033ce26_like ON public.pretixbase_event USING btree (slug varchar_pattern_ops); + + +-- +-- Name: pretixbase_eventfooterlink_event_id_b74bc831; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_eventfooterlink_event_id_b74bc831 ON public.pretixbase_eventfooterlink USING btree (event_id); + + +-- +-- Name: pretixbase_eventlock_event_9a555fb8_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_eventlock_event_9a555fb8_like ON public.pretixbase_eventlock USING btree (event varchar_pattern_ops); + + +-- +-- Name: pretixbase_eventmetaproperty_name_c3ddda49; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_eventmetaproperty_name_c3ddda49 ON public.pretixbase_eventmetaproperty USING btree (name); + + +-- +-- Name: pretixbase_eventmetaproperty_name_c3ddda49_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_eventmetaproperty_name_c3ddda49_like ON public.pretixbase_eventmetaproperty USING btree (name varchar_pattern_ops); + + +-- +-- Name: pretixbase_eventmetaproperty_organizer_id_595552fd; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_eventmetaproperty_organizer_id_595552fd ON public.pretixbase_eventmetaproperty USING btree (organizer_id); + + +-- +-- Name: pretixbase_eventmetavalue_event_id_567f5820; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_eventmetavalue_event_id_567f5820 ON public.pretixbase_eventmetavalue USING btree (event_id); + + +-- +-- Name: pretixbase_eventmetavalue_property_id_28f8ebf7; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_eventmetavalue_property_id_28f8ebf7 ON public.pretixbase_eventmetavalue USING btree (property_id); + + +-- +-- Name: pretixbase_eventsetting_object_id_d39bc956; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_eventsetting_object_id_d39bc956 ON public.pretixbase_event_settingsstore USING btree (object_id); + + +-- +-- Name: pretixbase_gate_organizer_id_d6070b77; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_gate_organizer_id_d6070b77 ON public.pretixbase_gate USING btree (organizer_id); + + +-- +-- Name: pretixbase_giftcard_issued_in_id_8e59beb9; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcard_issued_in_id_8e59beb9 ON public.pretixbase_giftcard USING btree (issued_in_id); + + +-- +-- Name: pretixbase_giftcard_issuer_id_57c2f4dd; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcard_issuer_id_57c2f4dd ON public.pretixbase_giftcard USING btree (issuer_id); + + +-- +-- Name: pretixbase_giftcard_owner_ticket_id_d35b98d5; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcard_owner_ticket_id_d35b98d5 ON public.pretixbase_giftcard USING btree (owner_ticket_id); + + +-- +-- Name: pretixbase_giftcard_secret_8368bc5a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcard_secret_8368bc5a ON public.pretixbase_giftcard USING btree (secret); + + +-- +-- Name: pretixbase_giftcard_secret_8368bc5a_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcard_secret_8368bc5a_like ON public.pretixbase_giftcard USING btree (secret varchar_pattern_ops); + + +-- +-- Name: pretixbase_giftcardacceptance_collector_id_13a50fa5; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcardacceptance_collector_id_13a50fa5 ON public.pretixbase_giftcardacceptance USING btree (acceptor_id); + + +-- +-- Name: pretixbase_giftcardacceptance_issuer_id_740d7cdc; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcardacceptance_issuer_id_740d7cdc ON public.pretixbase_giftcardacceptance USING btree (issuer_id); + + +-- +-- Name: pretixbase_giftcardtransaction_acceptor_id_790772af; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcardtransaction_acceptor_id_790772af ON public.pretixbase_giftcardtransaction USING btree (acceptor_id); + + +-- +-- Name: pretixbase_giftcardtransaction_card_id_2b213307; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcardtransaction_card_id_2b213307 ON public.pretixbase_giftcardtransaction USING btree (card_id); + + +-- +-- Name: pretixbase_giftcardtransaction_order_id_9cc06375; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcardtransaction_order_id_9cc06375 ON public.pretixbase_giftcardtransaction USING btree (order_id); + + +-- +-- Name: pretixbase_giftcardtransaction_payment_id_21f4d416; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcardtransaction_payment_id_21f4d416 ON public.pretixbase_giftcardtransaction USING btree (payment_id); + + +-- +-- Name: pretixbase_giftcardtransaction_refund_id_4852a01b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_giftcardtransaction_refund_id_4852a01b ON public.pretixbase_giftcardtransaction USING btree (refund_id); + + +-- +-- Name: pretixbase_globalsettingsobject_settingsstore_key_c85c6d29; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_globalsettingsobject_settingsstore_key_c85c6d29 ON public.pretixbase_globalsettingsobject_settingsstore USING btree (key); + + +-- +-- Name: pretixbase_globalsettingsobject_settingsstore_key_c85c6d29_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_globalsettingsobject_settingsstore_key_c85c6d29_like ON public.pretixbase_globalsettingsobject_settingsstore USING btree (key varchar_pattern_ops); + + +-- +-- Name: pretixbase_historicpassword_user_id_577b9c9f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_historicpassword_user_id_577b9c9f ON public.pretixbase_historicpassword USING btree (user_id); + + +-- +-- Name: pretixbase_invoice_event_id_4eb1793c; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_event_id_4eb1793c ON public.pretixbase_invoice USING btree (event_id); + + +-- +-- Name: pretixbase_invoice_full_invoice_no_ca155400; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_full_invoice_no_ca155400 ON public.pretixbase_invoice USING btree (full_invoice_no); + + +-- +-- Name: pretixbase_invoice_full_invoice_no_ca155400_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_full_invoice_no_ca155400_like ON public.pretixbase_invoice USING btree (full_invoice_no varchar_pattern_ops); + + +-- +-- Name: pretixbase_invoice_invoice_no_charfield_e3e140c3; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_invoice_no_charfield_e3e140c3 ON public.pretixbase_invoice USING btree (invoice_no); + + +-- +-- Name: pretixbase_invoice_invoice_no_charfield_e3e140c3_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_invoice_no_charfield_e3e140c3_like ON public.pretixbase_invoice USING btree (invoice_no varchar_pattern_ops); + + +-- +-- Name: pretixbase_invoice_order_id_ffa32f5d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_order_id_ffa32f5d ON public.pretixbase_invoice USING btree (order_id); + + +-- +-- Name: pretixbase_invoice_organizer_id_928d7304; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_organizer_id_928d7304 ON public.pretixbase_invoice USING btree (organizer_id); + + +-- +-- Name: pretixbase_invoice_prefix_b4c7163b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_prefix_b4c7163b ON public.pretixbase_invoice USING btree (prefix); + + +-- +-- Name: pretixbase_invoice_prefix_b4c7163b_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_prefix_b4c7163b_like ON public.pretixbase_invoice USING btree (prefix varchar_pattern_ops); + + +-- +-- Name: pretixbase_invoice_refers_id_6ccf8629; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoice_refers_id_6ccf8629 ON public.pretixbase_invoice USING btree (refers_id); + + +-- +-- Name: pretixbase_invoiceaddress_customer_id_b7780c27; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoiceaddress_customer_id_b7780c27 ON public.pretixbase_invoiceaddress USING btree (customer_id); + + +-- +-- Name: pretixbase_invoiceline_invoice_id_8e8da2c5; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoiceline_invoice_id_8e8da2c5 ON public.pretixbase_invoiceline USING btree (invoice_id); + + +-- +-- Name: pretixbase_invoiceline_item_id_4f120b6a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoiceline_item_id_4f120b6a ON public.pretixbase_invoiceline USING btree (item_id); + + +-- +-- Name: pretixbase_invoiceline_subevent_id_69f4adc8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoiceline_subevent_id_69f4adc8 ON public.pretixbase_invoiceline USING btree (subevent_id); + + +-- +-- Name: pretixbase_invoiceline_variation_id_1bf843e9; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_invoiceline_variation_id_1bf843e9 ON public.pretixbase_invoiceline USING btree (variation_id); + + +-- +-- Name: pretixbase_item_category_id_8fa63715; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_category_id_8fa63715 ON public.pretixbase_item USING btree (category_id); + + +-- +-- Name: pretixbase_item_event_id_6e8233b4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_event_id_6e8233b4 ON public.pretixbase_item USING btree (event_id); + + +-- +-- Name: pretixbase_item_grant_membership_type_id_6949efbf; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_grant_membership_type_id_6949efbf ON public.pretixbase_item USING btree (grant_membership_type_id); + + +-- +-- Name: pretixbase_item_hidden_if_available_id_6d97361e; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_hidden_if_available_id_6d97361e ON public.pretixbase_item USING btree (hidden_if_available_id); + + +-- +-- Name: pretixbase_item_hidden_if_item_available_id_cf6313d5; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_hidden_if_item_available_id_cf6313d5 ON public.pretixbase_item USING btree (hidden_if_item_available_id); + + +-- +-- Name: pretixbase_item_limit_sales_channels_item_id_7bbcbf9e; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_limit_sales_channels_item_id_7bbcbf9e ON public.pretixbase_item_limit_sales_channels USING btree (item_id); + + +-- +-- Name: pretixbase_item_limit_sales_channels_saleschannel_id_b265590a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_limit_sales_channels_saleschannel_id_b265590a ON public.pretixbase_item_limit_sales_channels USING btree (saleschannel_id); + + +-- +-- Name: pretixbase_item_require_me_membershiptype_id_6dff585d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_require_me_membershiptype_id_6dff585d ON public.pretixbase_item_require_membership_types USING btree (membershiptype_id); + + +-- +-- Name: pretixbase_item_require_membership_types_item_id_9a38c019; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_require_membership_types_item_id_9a38c019 ON public.pretixbase_item_require_membership_types USING btree (item_id); + + +-- +-- Name: pretixbase_item_tax_rule_id_f501b784; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_item_tax_rule_id_f501b784 ON public.pretixbase_item USING btree (tax_rule_id); + + +-- +-- Name: pretixbase_itemaddon_addon_category_id_370defeb; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemaddon_addon_category_id_370defeb ON public.pretixbase_itemaddon USING btree (addon_category_id); + + +-- +-- Name: pretixbase_itemaddon_base_item_id_1f94d65a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemaddon_base_item_id_1f94d65a ON public.pretixbase_itemaddon USING btree (base_item_id); + + +-- +-- Name: pretixbase_itembundle_base_item_id_ac6691f3; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itembundle_base_item_id_ac6691f3 ON public.pretixbase_itembundle USING btree (base_item_id); + + +-- +-- Name: pretixbase_itembundle_bundled_item_id_9f6f0a8f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itembundle_bundled_item_id_9f6f0a8f ON public.pretixbase_itembundle USING btree (bundled_item_id); + + +-- +-- Name: pretixbase_itembundle_bundled_variation_id_cd1fba5f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itembundle_bundled_variation_id_cd1fba5f ON public.pretixbase_itembundle USING btree (bundled_variation_id); + + +-- +-- Name: pretixbase_itemcategory_cr_item_id_ded4eff4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemcategory_cr_item_id_ded4eff4 ON public.pretixbase_itemcategory_cross_selling_match_products USING btree (item_id); + + +-- +-- Name: pretixbase_itemcategory_cr_itemcategory_id_b6e4cc8d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemcategory_cr_itemcategory_id_b6e4cc8d ON public.pretixbase_itemcategory_cross_selling_match_products USING btree (itemcategory_id); + + +-- +-- Name: pretixbase_itemcategory_event_id_0827a86a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemcategory_event_id_0827a86a ON public.pretixbase_itemcategory USING btree (event_id); + + +-- +-- Name: pretixbase_itemmetaproperty_event_id_3737ebd9; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemmetaproperty_event_id_3737ebd9 ON public.pretixbase_itemmetaproperty USING btree (event_id); + + +-- +-- Name: pretixbase_itemmetaproperty_name_7c74ea09; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemmetaproperty_name_7c74ea09 ON public.pretixbase_itemmetaproperty USING btree (name); + + +-- +-- Name: pretixbase_itemmetaproperty_name_7c74ea09_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemmetaproperty_name_7c74ea09_like ON public.pretixbase_itemmetaproperty USING btree (name varchar_pattern_ops); + + +-- +-- Name: pretixbase_itemmetavalue_item_id_721fc0d4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemmetavalue_item_id_721fc0d4 ON public.pretixbase_itemmetavalue USING btree (item_id); + + +-- +-- Name: pretixbase_itemmetavalue_property_id_2e880dd6; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemmetavalue_property_id_2e880dd6 ON public.pretixbase_itemmetavalue USING btree (property_id); + + +-- +-- Name: pretixbase_itemvariation_item_id_e3d28791; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemvariation_item_id_e3d28791 ON public.pretixbase_itemvariation USING btree (item_id); + + +-- +-- Name: pretixbase_itemvariation_l_itemvariation_id_873fc11b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemvariation_l_itemvariation_id_873fc11b ON public.pretixbase_itemvariation_limit_sales_channels USING btree (itemvariation_id); + + +-- +-- Name: pretixbase_itemvariation_l_saleschannel_id_c16b0528; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemvariation_l_saleschannel_id_c16b0528 ON public.pretixbase_itemvariation_limit_sales_channels USING btree (saleschannel_id); + + +-- +-- Name: pretixbase_itemvariation_r_itemvariation_id_f02cc223; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemvariation_r_itemvariation_id_f02cc223 ON public.pretixbase_itemvariation_require_membership_types USING btree (itemvariation_id); + + +-- +-- Name: pretixbase_itemvariation_r_membershiptype_id_9503bc9d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemvariation_r_membershiptype_id_9503bc9d ON public.pretixbase_itemvariation_require_membership_types USING btree (membershiptype_id); + + +-- +-- Name: pretixbase_itemvariationmetavalue_property_id_cd4d3754; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemvariationmetavalue_property_id_cd4d3754 ON public.pretixbase_itemvariationmetavalue USING btree (property_id); + + +-- +-- Name: pretixbase_itemvariationmetavalue_variation_id_bffd1e6e; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_itemvariationmetavalue_variation_id_bffd1e6e ON public.pretixbase_itemvariationmetavalue USING btree (variation_id); + + +-- +-- Name: pretixbase_logentry_api_token_id_e439bab1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_logentry_api_token_id_e439bab1 ON public.pretixbase_logentry USING btree (api_token_id); + + +-- +-- Name: pretixbase_logentry_content_type_id_f187b95a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_logentry_content_type_id_f187b95a ON public.pretixbase_logentry USING btree (content_type_id); + + +-- +-- Name: pretixbase_logentry_device_id_de073446; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_logentry_device_id_de073446 ON public.pretixbase_logentry USING btree (device_id); + + +-- +-- Name: pretixbase_logentry_event_id_3a3653c2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_logentry_event_id_3a3653c2 ON public.pretixbase_logentry USING btree (event_id); + + +-- +-- Name: pretixbase_logentry_oauth_application_id_1494edd6; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_logentry_oauth_application_id_1494edd6 ON public.pretixbase_logentry USING btree (oauth_application_id); + + +-- +-- Name: pretixbase_logentry_object_id_f43ba680; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_logentry_object_id_f43ba680 ON public.pretixbase_logentry USING btree (object_id); + + +-- +-- Name: pretixbase_logentry_organizer_link_id_ef70bd00; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_logentry_organizer_link_id_ef70bd00 ON public.pretixbase_logentry USING btree (organizer_link_id); + + +-- +-- Name: pretixbase_logentry_user_id_ba1c5649; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_logentry_user_id_ba1c5649 ON public.pretixbase_logentry USING btree (user_id); + + +-- +-- Name: pretixbase_mediumkeyset_organizer_id_32d0ffd3; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_mediumkeyset_organizer_id_32d0ffd3 ON public.pretixbase_mediumkeyset USING btree (organizer_id); + + +-- +-- Name: pretixbase_membership_customer_id_4ff4042e; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_membership_customer_id_4ff4042e ON public.pretixbase_membership USING btree (customer_id); + + +-- +-- Name: pretixbase_membership_granted_in_id_1b138db4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_membership_granted_in_id_1b138db4 ON public.pretixbase_membership USING btree (granted_in_id); + + +-- +-- Name: pretixbase_membership_membership_type_id_444c95ba; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_membership_membership_type_id_444c95ba ON public.pretixbase_membership USING btree (membership_type_id); + + +-- +-- Name: pretixbase_membershiptype_organizer_id_2eef68eb; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_membershiptype_organizer_id_2eef68eb ON public.pretixbase_membershiptype USING btree (organizer_id); + + +-- +-- Name: pretixbase_notificationsetting_event_id_f0fd9901; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_notificationsetting_event_id_f0fd9901 ON public.pretixbase_notificationsetting USING btree (event_id); + + +-- +-- Name: pretixbase_notificationsetting_user_id_c493b5ba; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_notificationsetting_user_id_c493b5ba ON public.pretixbase_notificationsetting USING btree (user_id); + + +-- +-- Name: pretixbase_order_code_1a5b4b96; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_order_code_1a5b4b96 ON public.pretixbase_order USING btree (code); + + +-- +-- Name: pretixbase_order_code_1a5b4b96_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_order_code_1a5b4b96_like ON public.pretixbase_order USING btree (code varchar_pattern_ops); + + +-- +-- Name: pretixbase_order_customer_id_5b72f50b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_order_customer_id_5b72f50b ON public.pretixbase_order USING btree (customer_id); + + +-- +-- Name: pretixbase_order_event_id_fcc6f9c6; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_order_event_id_fcc6f9c6 ON public.pretixbase_order USING btree (event_id); + + +-- +-- Name: pretixbase_order_organizer_id_015a3ef0; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_order_organizer_id_015a3ef0 ON public.pretixbase_order USING btree (organizer_id); + + +-- +-- Name: pretixbase_order_sales_channel_id_f03dc6c1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_order_sales_channel_id_f03dc6c1 ON public.pretixbase_order USING btree (sales_channel_id); + + +-- +-- Name: pretixbase_order_status_48db4c28; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_order_status_48db4c28 ON public.pretixbase_order USING btree (status); + + +-- +-- Name: pretixbase_order_status_48db4c28_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_order_status_48db4c28_like ON public.pretixbase_order USING btree (status varchar_pattern_ops); + + +-- +-- Name: pretixbase_orderfee_order_id_b8c4a186; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderfee_order_id_b8c4a186 ON public.pretixbase_orderfee USING btree (order_id); + + +-- +-- Name: pretixbase_orderfee_tax_rule_id_082755a4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderfee_tax_rule_id_082755a4 ON public.pretixbase_orderfee USING btree (tax_rule_id); + + +-- +-- Name: pretixbase_orderpayment_fee_id_392fba8e; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderpayment_fee_id_392fba8e ON public.pretixbase_orderpayment USING btree (fee_id); + + +-- +-- Name: pretixbase_orderpayment_order_id_80a5e1fb; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderpayment_order_id_80a5e1fb ON public.pretixbase_orderpayment USING btree (order_id); + + +-- +-- Name: pretixbase_orderposition_addon_to_id_480d4760; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_addon_to_id_480d4760 ON public.pretixbase_orderposition USING btree (addon_to_id); + + +-- +-- Name: pretixbase_orderposition_discount_id_158a0083; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_discount_id_158a0083 ON public.pretixbase_orderposition USING btree (discount_id); + + +-- +-- Name: pretixbase_orderposition_item_id_6eb5dffe; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_item_id_6eb5dffe ON public.pretixbase_orderposition USING btree (item_id); + + +-- +-- Name: pretixbase_orderposition_order_id_0d44232b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_order_id_0d44232b ON public.pretixbase_orderposition USING btree (order_id); + + +-- +-- Name: pretixbase_orderposition_organizer_id_9df72b87; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_organizer_id_9df72b87 ON public.pretixbase_orderposition USING btree (organizer_id); + + +-- +-- Name: pretixbase_orderposition_pseudonymization_id_355c7fbd_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_pseudonymization_id_355c7fbd_like ON public.pretixbase_orderposition USING btree (pseudonymization_id varchar_pattern_ops); + + +-- +-- Name: pretixbase_orderposition_seat_id_37ad0d08; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_seat_id_37ad0d08 ON public.pretixbase_orderposition USING btree (seat_id); + + +-- +-- Name: pretixbase_orderposition_secret_ecd577f1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_secret_ecd577f1 ON public.pretixbase_orderposition USING btree (secret); + + +-- +-- Name: pretixbase_orderposition_secret_ecd577f1_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_secret_ecd577f1_like ON public.pretixbase_orderposition USING btree (secret varchar_pattern_ops); + + +-- +-- Name: pretixbase_orderposition_subevent_id_b1dda9a0; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_subevent_id_b1dda9a0 ON public.pretixbase_orderposition USING btree (subevent_id); + + +-- +-- Name: pretixbase_orderposition_tax_rule_id_6564b2f1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_tax_rule_id_6564b2f1 ON public.pretixbase_orderposition USING btree (tax_rule_id); + + +-- +-- Name: pretixbase_orderposition_used_membership_id_1c048a26; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_used_membership_id_1c048a26 ON public.pretixbase_orderposition USING btree (used_membership_id); + + +-- +-- Name: pretixbase_orderposition_variation_id_04605fc4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_variation_id_04605fc4 ON public.pretixbase_orderposition USING btree (variation_id); + + +-- +-- Name: pretixbase_orderposition_voucher_id_e1ed13ae; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_voucher_id_e1ed13ae ON public.pretixbase_orderposition USING btree (voucher_id); + + +-- +-- Name: pretixbase_orderposition_web_secret_7b80edd8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_web_secret_7b80edd8 ON public.pretixbase_orderposition USING btree (web_secret); + + +-- +-- Name: pretixbase_orderposition_web_secret_7b80edd8_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderposition_web_secret_7b80edd8_like ON public.pretixbase_orderposition USING btree (web_secret varchar_pattern_ops); + + +-- +-- Name: pretixbase_orderrefund_order_id_029acd4f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderrefund_order_id_029acd4f ON public.pretixbase_orderrefund USING btree (order_id); + + +-- +-- Name: pretixbase_orderrefund_payment_id_9476c326; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_orderrefund_payment_id_9476c326 ON public.pretixbase_orderrefund USING btree (payment_id); + + +-- +-- Name: pretixbase_organizer_slug_8ef8a925_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_organizer_slug_8ef8a925_like ON public.pretixbase_organizer USING btree (slug varchar_pattern_ops); + + +-- +-- Name: pretixbase_organizerfooterlink_organizer_id_ffdf1d52; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_organizerfooterlink_organizer_id_ffdf1d52 ON public.pretixbase_organizerfooterlink USING btree (organizer_id); + + +-- +-- Name: pretixbase_organizersetting_object_id_ccc6c775; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_organizersetting_object_id_ccc6c775 ON public.pretixbase_organizer_settingsstore USING btree (object_id); + + +-- +-- Name: pretixbase_printlog_api_token_id_d980bbf2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_printlog_api_token_id_d980bbf2 ON public.pretixbase_printlog USING btree (api_token_id); + + +-- +-- Name: pretixbase_printlog_device_id_bd92c550; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_printlog_device_id_bd92c550 ON public.pretixbase_printlog USING btree (device_id); + + +-- +-- Name: pretixbase_printlog_oauth_application_id_7a3e68a8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_printlog_oauth_application_id_7a3e68a8 ON public.pretixbase_printlog USING btree (oauth_application_id); + + +-- +-- Name: pretixbase_printlog_position_id_c3813d93; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_printlog_position_id_c3813d93 ON public.pretixbase_printlog USING btree (position_id); + + +-- +-- Name: pretixbase_printlog_user_id_54459518; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_printlog_user_id_54459518 ON public.pretixbase_printlog USING btree (user_id); + + +-- +-- Name: pretixbase_question_dependency_question_id_a02199c8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_question_dependency_question_id_a02199c8 ON public.pretixbase_question USING btree (dependency_question_id); + + +-- +-- Name: pretixbase_question_event_id_ca103445; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_question_event_id_ca103445 ON public.pretixbase_question USING btree (event_id); + + +-- +-- Name: pretixbase_question_items_item_id_ceeaebc0; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_question_items_item_id_ceeaebc0 ON public.pretixbase_question_items USING btree (item_id); + + +-- +-- Name: pretixbase_question_items_question_id_fc7dc2f8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_question_items_question_id_fc7dc2f8 ON public.pretixbase_question_items USING btree (question_id); + + +-- +-- Name: pretixbase_questionanswer_cartposition_id_de73bb5f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_questionanswer_cartposition_id_de73bb5f ON public.pretixbase_questionanswer USING btree (cartposition_id); + + +-- +-- Name: pretixbase_questionanswer_options_questionanswer_id_21ac63b6; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_questionanswer_options_questionanswer_id_21ac63b6 ON public.pretixbase_questionanswer_options USING btree (questionanswer_id); + + +-- +-- Name: pretixbase_questionanswer_options_questionoption_id_641ff2f6; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_questionanswer_options_questionoption_id_641ff2f6 ON public.pretixbase_questionanswer_options USING btree (questionoption_id); + + +-- +-- Name: pretixbase_questionanswer_orderposition_id_1ccb6977; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_questionanswer_orderposition_id_1ccb6977 ON public.pretixbase_questionanswer USING btree (orderposition_id); + + +-- +-- Name: pretixbase_questionanswer_question_id_9a80a111; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_questionanswer_question_id_9a80a111 ON public.pretixbase_questionanswer USING btree (question_id); + + +-- +-- Name: pretixbase_questionoption_question_id_67c888dd; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_questionoption_question_id_67c888dd ON public.pretixbase_questionoption USING btree (question_id); + + +-- +-- Name: pretixbase_quota_event_id_e57269de; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_quota_event_id_e57269de ON public.pretixbase_quota USING btree (event_id); + + +-- +-- Name: pretixbase_quota_items_item_id_f7234603; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_quota_items_item_id_f7234603 ON public.pretixbase_quota_items USING btree (item_id); + + +-- +-- Name: pretixbase_quota_items_quota_id_222bf960; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_quota_items_quota_id_222bf960 ON public.pretixbase_quota_items USING btree (quota_id); + + +-- +-- Name: pretixbase_quota_subevent_id_f2fc62f2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_quota_subevent_id_f2fc62f2 ON public.pretixbase_quota USING btree (subevent_id); + + +-- +-- Name: pretixbase_quota_variations_itemvariation_id_c3ea6748; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_quota_variations_itemvariation_id_c3ea6748 ON public.pretixbase_quota_variations USING btree (itemvariation_id); + + +-- +-- Name: pretixbase_quota_variations_quota_id_73db970d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_quota_variations_quota_id_73db970d ON public.pretixbase_quota_variations USING btree (quota_id); + + +-- +-- Name: pretixbase_reusablemedium_customer_id_8b2f59c4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_reusablemedium_customer_id_8b2f59c4 ON public.pretixbase_reusablemedium USING btree (customer_id); + + +-- +-- Name: pretixbase_reusablemedium_linked_giftcard_id_d585c7de; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_reusablemedium_linked_giftcard_id_d585c7de ON public.pretixbase_reusablemedium USING btree (linked_giftcard_id); + + +-- +-- Name: pretixbase_reusablemedium_linked_orderposition_id_471ad0bd; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_reusablemedium_linked_orderposition_id_471ad0bd ON public.pretixbase_reusablemedium USING btree (linked_orderposition_id); + + +-- +-- Name: pretixbase_reusablemedium_organizer_id_7e593c5c; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_reusablemedium_organizer_id_7e593c5c ON public.pretixbase_reusablemedium USING btree (organizer_id); + + +-- +-- Name: pretixbase_revokedticketsecret_event_id_d697417b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_revokedticketsecret_event_id_d697417b ON public.pretixbase_revokedticketsecret USING btree (event_id); + + +-- +-- Name: pretixbase_revokedticketsecret_position_id_6e4cdbd0; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_revokedticketsecret_position_id_6e4cdbd0 ON public.pretixbase_revokedticketsecret USING btree (position_id); + + +-- +-- Name: pretixbase_revokedticketsecret_secret_ff0a20ad; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_revokedticketsecret_secret_ff0a20ad ON public.pretixbase_revokedticketsecret USING btree (secret); + + +-- +-- Name: pretixbase_revokedticketsecret_secret_ff0a20ad_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_revokedticketsecret_secret_ff0a20ad_like ON public.pretixbase_revokedticketsecret USING btree (secret text_pattern_ops); + + +-- +-- Name: pretixbase_saleschannel_organizer_id_8cace410; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_saleschannel_organizer_id_8cace410 ON public.pretixbase_saleschannel USING btree (organizer_id); + + +-- +-- Name: pretixbase_scheduledeventexport_event_id_1ffd0c7f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_scheduledeventexport_event_id_1ffd0c7f ON public.pretixbase_scheduledeventexport USING btree (event_id); + + +-- +-- Name: pretixbase_scheduledeventexport_owner_id_4f33c70f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_scheduledeventexport_owner_id_4f33c70f ON public.pretixbase_scheduledeventexport USING btree (owner_id); + + +-- +-- Name: pretixbase_scheduledorganizerexport_organizer_id_28f937cc; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_scheduledorganizerexport_organizer_id_28f937cc ON public.pretixbase_scheduledorganizerexport USING btree (organizer_id); + + +-- +-- Name: pretixbase_scheduledorganizerexport_owner_id_c2dd2b2a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_scheduledorganizerexport_owner_id_c2dd2b2a ON public.pretixbase_scheduledorganizerexport USING btree (owner_id); + + +-- +-- Name: pretixbase_seat_event_id_9a773a14; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_seat_event_id_9a773a14 ON public.pretixbase_seat USING btree (event_id); + + +-- +-- Name: pretixbase_seat_product_id_73407f46; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_seat_product_id_73407f46 ON public.pretixbase_seat USING btree (product_id); + + +-- +-- Name: pretixbase_seat_seat_guid_ad022115; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_seat_seat_guid_ad022115 ON public.pretixbase_seat USING btree (seat_guid); + + +-- +-- Name: pretixbase_seat_seat_guid_ad022115_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_seat_seat_guid_ad022115_like ON public.pretixbase_seat USING btree (seat_guid varchar_pattern_ops); + + +-- +-- Name: pretixbase_seat_subevent_id_278a2c92; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_seat_subevent_id_278a2c92 ON public.pretixbase_seat USING btree (subevent_id); + + +-- +-- Name: pretixbase_seatcategorymapping_event_id_f3de411f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_seatcategorymapping_event_id_f3de411f ON public.pretixbase_seatcategorymapping USING btree (event_id); + + +-- +-- Name: pretixbase_seatcategorymapping_product_id_22916f47; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_seatcategorymapping_product_id_22916f47 ON public.pretixbase_seatcategorymapping USING btree (product_id); + + +-- +-- Name: pretixbase_seatcategorymapping_subevent_id_e0f8e643; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_seatcategorymapping_subevent_id_e0f8e643 ON public.pretixbase_seatcategorymapping USING btree (subevent_id); + + +-- +-- Name: pretixbase_seatingplan_organizer_id_373881ef; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_seatingplan_organizer_id_373881ef ON public.pretixbase_seatingplan USING btree (organizer_id); + + +-- +-- Name: pretixbase_staffsession_user_id_dbe96c7a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_staffsession_user_id_dbe96c7a ON public.pretixbase_staffsession USING btree (user_id); + + +-- +-- Name: pretixbase_staffsessionauditlog_impersonating_id_7d7562e3; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_staffsessionauditlog_impersonating_id_7d7562e3 ON public.pretixbase_staffsessionauditlog USING btree (impersonating_id); + + +-- +-- Name: pretixbase_staffsessionauditlog_session_id_48ead8a1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_staffsessionauditlog_session_id_48ead8a1 ON public.pretixbase_staffsessionauditlog USING btree (session_id); + + +-- +-- Name: pretixbase_subevent_event_id_3ca2e6c9; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_subevent_event_id_3ca2e6c9 ON public.pretixbase_subevent USING btree (event_id); + + +-- +-- Name: pretixbase_subevent_last_modified_9ebd2e00; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_subevent_last_modified_9ebd2e00 ON public.pretixbase_subevent USING btree (last_modified); + + +-- +-- Name: pretixbase_subevent_seating_plan_id_5720ab67; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_subevent_seating_plan_id_5720ab67 ON public.pretixbase_subevent USING btree (seating_plan_id); + + +-- +-- Name: pretixbase_subeventitem_item_id_87c1ba29; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_subeventitem_item_id_87c1ba29 ON public.pretixbase_subeventitem USING btree (item_id); + + +-- +-- Name: pretixbase_subeventitem_subevent_id_2da8e314; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_subeventitem_subevent_id_2da8e314 ON public.pretixbase_subeventitem USING btree (subevent_id); + + +-- +-- Name: pretixbase_subeventitemvariation_subevent_id_9fc7911f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_subeventitemvariation_subevent_id_9fc7911f ON public.pretixbase_subeventitemvariation USING btree (subevent_id); + + +-- +-- Name: pretixbase_subeventitemvariation_variation_id_182b380a; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_subeventitemvariation_variation_id_182b380a ON public.pretixbase_subeventitemvariation USING btree (variation_id); + + +-- +-- Name: pretixbase_subeventmetavalue_property_id_bda97d56; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_subeventmetavalue_property_id_bda97d56 ON public.pretixbase_subeventmetavalue USING btree (property_id); + + +-- +-- Name: pretixbase_subeventmetavalue_subevent_id_b97a87d2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_subeventmetavalue_subevent_id_b97a87d2 ON public.pretixbase_subeventmetavalue USING btree (subevent_id); + + +-- +-- Name: pretixbase_taxrule_event_id_178a74ee; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_taxrule_event_id_178a74ee ON public.pretixbase_taxrule USING btree (event_id); + + +-- +-- Name: pretixbase_team_limit_events_event_id_f667e127; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_team_limit_events_event_id_f667e127 ON public.pretixbase_team_limit_events USING btree (event_id); + + +-- +-- Name: pretixbase_team_limit_events_team_id_0612e133; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_team_limit_events_team_id_0612e133 ON public.pretixbase_team_limit_events USING btree (team_id); + + +-- +-- Name: pretixbase_team_members_team_id_9136ddb5; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_team_members_team_id_9136ddb5 ON public.pretixbase_team_members USING btree (team_id); + + +-- +-- Name: pretixbase_team_members_user_id_ee9124e2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_team_members_user_id_ee9124e2 ON public.pretixbase_team_members USING btree (user_id); + + +-- +-- Name: pretixbase_team_organizer_id_05a40a53; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_team_organizer_id_05a40a53 ON public.pretixbase_team USING btree (organizer_id); + + +-- +-- Name: pretixbase_teamapitoken_team_id_7c6c0b4b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_teamapitoken_team_id_7c6c0b4b ON public.pretixbase_teamapitoken USING btree (team_id); + + +-- +-- Name: pretixbase_teaminvite_team_id_bfe11558; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_teaminvite_team_id_bfe11558 ON public.pretixbase_teaminvite USING btree (team_id); + + +-- +-- Name: pretixbase_transaction_created_d1ac653f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_transaction_created_d1ac653f ON public.pretixbase_transaction USING btree (created); + + +-- +-- Name: pretixbase_transaction_item_id_96bec76f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_transaction_item_id_96bec76f ON public.pretixbase_transaction USING btree (item_id); + + +-- +-- Name: pretixbase_transaction_order_id_1c33c439; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_transaction_order_id_1c33c439 ON public.pretixbase_transaction USING btree (order_id); + + +-- +-- Name: pretixbase_transaction_subevent_id_679753d8; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_transaction_subevent_id_679753d8 ON public.pretixbase_transaction USING btree (subevent_id); + + +-- +-- Name: pretixbase_transaction_tax_rule_id_f0e678e5; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_transaction_tax_rule_id_f0e678e5 ON public.pretixbase_transaction USING btree (tax_rule_id); + + +-- +-- Name: pretixbase_transaction_variation_id_6ab9f00d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_transaction_variation_id_6ab9f00d ON public.pretixbase_transaction USING btree (variation_id); + + +-- +-- Name: pretixbase_u2fdevice_user_id_83ffb7c2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_u2fdevice_user_id_83ffb7c2 ON public.pretixbase_u2fdevice USING btree (user_id); + + +-- +-- Name: pretixbase_user_auth_backend_identifier_44ab37d0; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_user_auth_backend_identifier_44ab37d0 ON public.pretixbase_user USING btree (auth_backend_identifier); + + +-- +-- Name: pretixbase_user_auth_backend_identifier_44ab37d0_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_user_auth_backend_identifier_44ab37d0_like ON public.pretixbase_user USING btree (auth_backend_identifier varchar_pattern_ops); + + +-- +-- Name: pretixbase_user_email_2a621a28_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_user_email_2a621a28_like ON public.pretixbase_user USING btree (email varchar_pattern_ops); + + +-- +-- Name: pretixbase_user_groups_group_id_98f0aee4; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_user_groups_group_id_98f0aee4 ON public.pretixbase_user_groups USING btree (group_id); + + +-- +-- Name: pretixbase_user_groups_user_id_844303d2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_user_groups_user_id_844303d2 ON public.pretixbase_user_groups USING btree (user_id); + + +-- +-- Name: pretixbase_user_user_permissions_permission_id_dfd420d0; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_user_user_permissions_permission_id_dfd420d0 ON public.pretixbase_user_user_permissions USING btree (permission_id); + + +-- +-- Name: pretixbase_user_user_permissions_user_id_a8c52ecb; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_user_user_permissions_user_id_a8c52ecb ON public.pretixbase_user_user_permissions USING btree (user_id); + + +-- +-- Name: pretixbase_userknownloginsource_user_id_ed8d12c5; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_userknownloginsource_user_id_ed8d12c5 ON public.pretixbase_userknownloginsource USING btree (user_id); + + +-- +-- Name: pretixbase_voucher_code_6691a85b; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_code_6691a85b ON public.pretixbase_voucher USING btree (code); + + +-- +-- Name: pretixbase_voucher_code_6691a85b_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_code_6691a85b_like ON public.pretixbase_voucher USING btree (code varchar_pattern_ops); + + +-- +-- Name: pretixbase_voucher_event_id_1bd19b72; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_event_id_1bd19b72 ON public.pretixbase_voucher USING btree (event_id); + + +-- +-- Name: pretixbase_voucher_item_id_7082505d; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_item_id_7082505d ON public.pretixbase_voucher USING btree (item_id); + + +-- +-- Name: pretixbase_voucher_quota_id_f1a35cde; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_quota_id_f1a35cde ON public.pretixbase_voucher USING btree (quota_id); + + +-- +-- Name: pretixbase_voucher_seat_id_b7906d99; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_seat_id_b7906d99 ON public.pretixbase_voucher USING btree (seat_id); + + +-- +-- Name: pretixbase_voucher_subevent_id_dbc0b6a2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_subevent_id_dbc0b6a2 ON public.pretixbase_voucher USING btree (subevent_id); + + +-- +-- Name: pretixbase_voucher_tag_e3f384bf; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_tag_e3f384bf ON public.pretixbase_voucher USING btree (tag); + + +-- +-- Name: pretixbase_voucher_tag_e3f384bf_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_tag_e3f384bf_like ON public.pretixbase_voucher USING btree (tag varchar_pattern_ops); + + +-- +-- Name: pretixbase_voucher_valid_until_774d1851; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_valid_until_774d1851 ON public.pretixbase_voucher USING btree (valid_until); + + +-- +-- Name: pretixbase_voucher_variation_id_8b959226; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_voucher_variation_id_8b959226 ON public.pretixbase_voucher USING btree (variation_id); + + +-- +-- Name: pretixbase_waitinglistentry_event_id_f29b59b0; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_waitinglistentry_event_id_f29b59b0 ON public.pretixbase_waitinglistentry USING btree (event_id); + + +-- +-- Name: pretixbase_waitinglistentry_item_id_3f39aada; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_waitinglistentry_item_id_3f39aada ON public.pretixbase_waitinglistentry USING btree (item_id); + + +-- +-- Name: pretixbase_waitinglistentry_subevent_id_8bda61c7; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_waitinglistentry_subevent_id_8bda61c7 ON public.pretixbase_waitinglistentry USING btree (subevent_id); + + +-- +-- Name: pretixbase_waitinglistentry_variation_id_8f59d1c1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_waitinglistentry_variation_id_8f59d1c1 ON public.pretixbase_waitinglistentry USING btree (variation_id); + + +-- +-- Name: pretixbase_waitinglistentry_voucher_id_109e4555; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_waitinglistentry_voucher_id_109e4555 ON public.pretixbase_waitinglistentry USING btree (voucher_id); + + +-- +-- Name: pretixbase_webauthndevice_user_id_7fbd58ca; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixbase_webauthndevice_user_id_7fbd58ca ON public.pretixbase_webauthndevice USING btree (user_id); + + +-- +-- Name: pretixdroid_checkin_position_id_f1431bd2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixdroid_checkin_position_id_f1431bd2 ON public.pretixbase_checkin USING btree (position_id); + + +-- +-- Name: pretixmultidomain_altern_domain_id_e33d054f_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixmultidomain_altern_domain_id_e33d054f_like ON public.pretixmultidomain_alternativedomainassignment USING btree (domain_id varchar_pattern_ops); + + +-- +-- Name: pretixmultidomain_alternat_domain_id_e33d054f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixmultidomain_alternat_domain_id_e33d054f ON public.pretixmultidomain_alternativedomainassignment USING btree (domain_id); + + +-- +-- Name: pretixmultidomain_knowndomain_domainname_b7e764cf_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixmultidomain_knowndomain_domainname_b7e764cf_like ON public.pretixmultidomain_knowndomain USING btree (domainname varchar_pattern_ops); + + +-- +-- Name: pretixmultidomain_knowndomain_organizer_id_2d571a7f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX pretixmultidomain_knowndomain_organizer_id_2d571a7f ON public.pretixmultidomain_knowndomain USING btree (organizer_id); + + +-- +-- Name: sendmail_rule_event_id_9db08b05; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX sendmail_rule_event_id_9db08b05 ON public.sendmail_rule USING btree (event_id); + + +-- +-- Name: sendmail_rule_limit_products_item_id_8d260469; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX sendmail_rule_limit_products_item_id_8d260469 ON public.sendmail_rule_limit_products USING btree (item_id); + + +-- +-- Name: sendmail_rule_limit_products_rule_id_64da4147; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX sendmail_rule_limit_products_rule_id_64da4147 ON public.sendmail_rule_limit_products USING btree (rule_id); + + +-- +-- Name: sendmail_rule_subevent_id_98a124cb; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX sendmail_rule_subevent_id_98a124cb ON public.sendmail_rule USING btree (subevent_id); + + +-- +-- Name: sendmail_scheduledmail_computed_datetime_99fda141; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX sendmail_scheduledmail_computed_datetime_99fda141 ON public.sendmail_scheduledmail USING btree (computed_datetime); + + +-- +-- Name: sendmail_scheduledmail_event_id_7b9dd927; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX sendmail_scheduledmail_event_id_7b9dd927 ON public.sendmail_scheduledmail USING btree (event_id); + + +-- +-- Name: sendmail_scheduledmail_rule_id_966c05ac; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX sendmail_scheduledmail_rule_id_966c05ac ON public.sendmail_scheduledmail USING btree (rule_id); + + +-- +-- Name: sendmail_scheduledmail_subevent_id_0d0c676f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX sendmail_scheduledmail_subevent_id_0d0c676f ON public.sendmail_scheduledmail USING btree (subevent_id); + + +-- +-- Name: stripe_referencedstripeobject_order_id_c9c61aeb; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX stripe_referencedstripeobject_order_id_c9c61aeb ON public.stripe_referencedstripeobject USING btree (order_id); + + +-- +-- Name: stripe_referencedstripeobject_payment_id_51b1ab47; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX stripe_referencedstripeobject_payment_id_51b1ab47 ON public.stripe_referencedstripeobject USING btree (payment_id); + + +-- +-- Name: stripe_referencedstripeobject_reference_049bf84f_like; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX stripe_referencedstripeobject_reference_049bf84f_like ON public.stripe_referencedstripeobject USING btree (reference varchar_pattern_ops); + + +-- +-- Name: ticketoutputpdf_ticketlayout_event_id_7119c6d2; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX ticketoutputpdf_ticketlayout_event_id_7119c6d2 ON public.ticketoutputpdf_ticketlayout USING btree (event_id); + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem_item_id_273d9107; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX ticketoutputpdf_ticketlayoutitem_item_id_273d9107 ON public.ticketoutputpdf_ticketlayoutitem USING btree (item_id); + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem_layout_id_9b76e49f; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX ticketoutputpdf_ticketlayoutitem_layout_id_9b76e49f ON public.ticketoutputpdf_ticketlayoutitem USING btree (layout_id); + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem_sales_channel_id_1d14eea1; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE INDEX ticketoutputpdf_ticketlayoutitem_sales_channel_id_1d14eea1 ON public.ticketoutputpdf_ticketlayoutitem USING btree (sales_channel_id); + + +-- +-- Name: unique_organizer_domain; Type: INDEX; Schema: public; Owner: pretix +-- + +CREATE UNIQUE INDEX unique_organizer_domain ON public.pretixmultidomain_knowndomain USING btree (organizer_id) WHERE ((mode)::text = 'organizer'::text); + + +-- +-- Name: auth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +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: pretix +-- + +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: pretix +-- + +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: autocheckin_autocheckinrule_limit_products autocheckin_autochec_autocheckinrule_id_00ef3c87_fk_autocheck; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_products + ADD CONSTRAINT autocheckin_autochec_autocheckinrule_id_00ef3c87_fk_autocheck FOREIGN KEY (autocheckinrule_id) REFERENCES public.autocheckin_autocheckinrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: autocheckin_autocheckinrule_limit_sales_channels autocheckin_autochec_autocheckinrule_id_ae5d3b36_fk_autocheck; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_sales_channels + ADD CONSTRAINT autocheckin_autochec_autocheckinrule_id_ae5d3b36_fk_autocheck FOREIGN KEY (autocheckinrule_id) REFERENCES public.autocheckin_autocheckinrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: autocheckin_autocheckinrule_limit_variations autocheckin_autochec_autocheckinrule_id_e90e5fb4_fk_autocheck; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_variations + ADD CONSTRAINT autocheckin_autochec_autocheckinrule_id_e90e5fb4_fk_autocheck FOREIGN KEY (autocheckinrule_id) REFERENCES public.autocheckin_autocheckinrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: autocheckin_autocheckinrule autocheckin_autochec_event_id_6d5570a1_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule + ADD CONSTRAINT autocheckin_autochec_event_id_6d5570a1_fk_pretixbas FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: autocheckin_autocheckinrule_limit_products autocheckin_autochec_item_id_7bbdbb9f_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_products + ADD CONSTRAINT autocheckin_autochec_item_id_7bbdbb9f_fk_pretixbas FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: autocheckin_autocheckinrule_limit_variations autocheckin_autochec_itemvariation_id_65e502bf_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_variations + ADD CONSTRAINT autocheckin_autochec_itemvariation_id_65e502bf_fk_pretixbas FOREIGN KEY (itemvariation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: autocheckin_autocheckinrule autocheckin_autochec_list_id_c3a022ee_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule + ADD CONSTRAINT autocheckin_autochec_list_id_c3a022ee_fk_pretixbas FOREIGN KEY (list_id) REFERENCES public.pretixbase_checkinlist(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: autocheckin_autocheckinrule_limit_sales_channels autocheckin_autochec_saleschannel_id_d140b680_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.autocheckin_autocheckinrule_limit_sales_channels + ADD CONSTRAINT autocheckin_autochec_saleschannel_id_d140b680_fk_pretixbas FOREIGN KEY (saleschannel_id) REFERENCES public.pretixbase_saleschannel(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: badges_badgeitem badges_badgeitem_item_id_f10e9e2b_fk_pretixbase_item_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.badges_badgeitem + ADD CONSTRAINT badges_badgeitem_item_id_f10e9e2b_fk_pretixbase_item_id FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: badges_badgeitem badges_badgeitem_layout_id_e98e19ee_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.badges_badgeitem + ADD CONSTRAINT badges_badgeitem_layout_id_e98e19ee_fk FOREIGN KEY (layout_id) REFERENCES public.badges_badgelayout(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: badges_badgelayout badges_badgelayout_event_id_68746277_fk_pretixbase_event_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.badges_badgelayout + ADD CONSTRAINT badges_badgelayout_event_id_68746277_fk_pretixbase_event_id FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: banktransfer_bankimportjob banktransfer_bankimp_event_id_357c0b48_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_bankimportjob + ADD CONSTRAINT banktransfer_bankimp_event_id_357c0b48_fk_pretixbas FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: banktransfer_bankimportjob banktransfer_bankimp_organizer_id_77cbeb32_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_bankimportjob + ADD CONSTRAINT banktransfer_bankimp_organizer_id_77cbeb32_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: banktransfer_banktransaction banktransfer_banktra_event_id_96ac4f74_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_banktransaction + ADD CONSTRAINT banktransfer_banktra_event_id_96ac4f74_fk_pretixbas FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: banktransfer_banktransaction banktransfer_banktra_order_id_f3ac8caf_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_banktransaction + ADD CONSTRAINT banktransfer_banktra_order_id_f3ac8caf_fk_pretixbas FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: banktransfer_banktransaction banktransfer_banktra_organizer_id_a1995eea_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_banktransaction + ADD CONSTRAINT banktransfer_banktra_organizer_id_a1995eea_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: banktransfer_banktransaction banktransfer_banktransaction_import_job_id_b1439157_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_banktransaction + ADD CONSTRAINT banktransfer_banktransaction_import_job_id_b1439157_fk FOREIGN KEY (import_job_id) REFERENCES public.banktransfer_bankimportjob(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: banktransfer_refundexport banktransfer_refunde_event_id_41729994_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_refundexport + ADD CONSTRAINT banktransfer_refunde_event_id_41729994_fk_pretixbas FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: banktransfer_refundexport banktransfer_refunde_organizer_id_613c779f_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.banktransfer_refundexport + ADD CONSTRAINT banktransfer_refunde_organizer_id_613c779f_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: otp_static_staticdevice otp_static_staticdevice_user_id_7f9cff2b_fk_pretixbase_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.otp_static_staticdevice + ADD CONSTRAINT otp_static_staticdevice_user_id_7f9cff2b_fk_pretixbase_user_id FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: otp_static_statictoken otp_static_statictok_device_id_74b7c7d1_fk_otp_stati; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.otp_static_statictoken + ADD CONSTRAINT otp_static_statictok_device_id_74b7c7d1_fk_otp_stati FOREIGN KEY (device_id) REFERENCES public.otp_static_staticdevice(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: otp_totp_totpdevice otp_totp_totpdevice_user_id_0fb18292_fk_pretixbase_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.otp_totp_totpdevice + ADD CONSTRAINT otp_totp_totpdevice_user_id_0fb18292_fk_pretixbase_user_id FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: paypal_referencedpaypalobject paypal_referencedpay_order_id_969d6ded_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.paypal_referencedpaypalobject + ADD CONSTRAINT paypal_referencedpay_order_id_969d6ded_fk_pretixbas FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: paypal_referencedpaypalobject paypal_referencedpay_payment_id_430996e6_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.paypal_referencedpaypalobject + ADD CONSTRAINT paypal_referencedpay_payment_id_430996e6_fk_pretixbas FOREIGN KEY (payment_id) REFERENCES public.pretixbase_orderpayment(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthaccesstoken pretixapi_oauthacces_application_id_245596a4_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken + ADD CONSTRAINT pretixapi_oauthacces_application_id_245596a4_fk_pretixapi FOREIGN KEY (application_id) REFERENCES public.pretixapi_oauthapplication(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthaccesstoken pretixapi_oauthacces_id_token_id_2d71719d_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken + ADD CONSTRAINT pretixapi_oauthacces_id_token_id_2d71719d_fk_pretixapi FOREIGN KEY (id_token_id) REFERENCES public.pretixapi_oauthidtoken(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthaccesstoken_organizers pretixapi_oauthacces_oauthaccesstoken_id_fe612a29_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken_organizers + ADD CONSTRAINT pretixapi_oauthacces_oauthaccesstoken_id_fe612a29_fk_pretixapi FOREIGN KEY (oauthaccesstoken_id) REFERENCES public.pretixapi_oauthaccesstoken(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthaccesstoken_organizers pretixapi_oauthacces_organizer_id_226c8320_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken_organizers + ADD CONSTRAINT pretixapi_oauthacces_organizer_id_226c8320_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthaccesstoken pretixapi_oauthacces_source_refresh_token_c63a223c_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken + ADD CONSTRAINT pretixapi_oauthacces_source_refresh_token_c63a223c_fk_pretixapi FOREIGN KEY (source_refresh_token_id) REFERENCES public.pretixapi_oauthrefreshtoken(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthaccesstoken pretixapi_oauthaccesstoken_user_id_13eca036_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthaccesstoken + ADD CONSTRAINT pretixapi_oauthaccesstoken_user_id_13eca036_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthapplication pretixapi_oauthapplication_user_id_5c13458d_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthapplication + ADD CONSTRAINT pretixapi_oauthapplication_user_id_5c13458d_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthgrant pretixapi_oauthgrant_application_id_9862c02b_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthgrant + ADD CONSTRAINT pretixapi_oauthgrant_application_id_9862c02b_fk_pretixapi FOREIGN KEY (application_id) REFERENCES public.pretixapi_oauthapplication(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthgrant_organizers pretixapi_oauthgrant_oauthgrant_id_993176dd_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthgrant_organizers + ADD CONSTRAINT pretixapi_oauthgrant_oauthgrant_id_993176dd_fk_pretixapi FOREIGN KEY (oauthgrant_id) REFERENCES public.pretixapi_oauthgrant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthgrant_organizers pretixapi_oauthgrant_organizer_id_96dfce8f_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthgrant_organizers + ADD CONSTRAINT pretixapi_oauthgrant_organizer_id_96dfce8f_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthgrant pretixapi_oauthgrant_user_id_62abb1d8_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthgrant + ADD CONSTRAINT pretixapi_oauthgrant_user_id_62abb1d8_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthidtoken pretixapi_oauthidtok_application_id_5b429f07_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthidtoken + ADD CONSTRAINT pretixapi_oauthidtok_application_id_5b429f07_fk_pretixapi FOREIGN KEY (application_id) REFERENCES public.pretixapi_oauthapplication(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthidtoken_organizers pretixapi_oauthidtok_oauthidtoken_id_1798dd46_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthidtoken_organizers + ADD CONSTRAINT pretixapi_oauthidtok_oauthidtoken_id_1798dd46_fk_pretixapi FOREIGN KEY (oauthidtoken_id) REFERENCES public.pretixapi_oauthidtoken(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthidtoken_organizers pretixapi_oauthidtok_organizer_id_c1aaee61_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthidtoken_organizers + ADD CONSTRAINT pretixapi_oauthidtok_organizer_id_c1aaee61_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthidtoken pretixapi_oauthidtoken_user_id_75c907e8_fk_pretixbase_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthidtoken + ADD CONSTRAINT pretixapi_oauthidtoken_user_id_75c907e8_fk_pretixbase_user_id FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthrefreshtoken pretixapi_oauthrefre_access_token_id_a2b77010_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthrefreshtoken + ADD CONSTRAINT pretixapi_oauthrefre_access_token_id_a2b77010_fk_pretixapi FOREIGN KEY (access_token_id) REFERENCES public.pretixapi_oauthaccesstoken(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthrefreshtoken pretixapi_oauthrefre_application_id_a7e865e1_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthrefreshtoken + ADD CONSTRAINT pretixapi_oauthrefre_application_id_a7e865e1_fk_pretixapi FOREIGN KEY (application_id) REFERENCES public.pretixapi_oauthapplication(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_oauthrefreshtoken pretixapi_oauthrefreshtoken_user_id_a24feddf_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_oauthrefreshtoken + ADD CONSTRAINT pretixapi_oauthrefreshtoken_user_id_a24feddf_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_webhook_limit_events pretixapi_webhook_li_event_id_76919dfd_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhook_limit_events + ADD CONSTRAINT pretixapi_webhook_li_event_id_76919dfd_fk_pretixbas FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_webhook_limit_events pretixapi_webhook_limit_events_webhook_id_763c4a3f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhook_limit_events + ADD CONSTRAINT pretixapi_webhook_limit_events_webhook_id_763c4a3f_fk FOREIGN KEY (webhook_id) REFERENCES public.pretixapi_webhook(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_webhook pretixapi_webhook_organizer_id_10a41f04_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhook + ADD CONSTRAINT pretixapi_webhook_organizer_id_10a41f04_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_webhookcallretry pretixapi_webhookcal_logentry_id_3b11ec45_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhookcallretry + ADD CONSTRAINT pretixapi_webhookcal_logentry_id_3b11ec45_fk_pretixbas FOREIGN KEY (logentry_id) REFERENCES public.pretixbase_logentry(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_webhookcall pretixapi_webhookcall_webhook_id_e138c438_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhookcall + ADD CONSTRAINT pretixapi_webhookcall_webhook_id_e138c438_fk FOREIGN KEY (webhook_id) REFERENCES public.pretixapi_webhook(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_webhookcallretry pretixapi_webhookcallretry_webhook_id_a598b82c_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhookcallretry + ADD CONSTRAINT pretixapi_webhookcallretry_webhook_id_a598b82c_fk FOREIGN KEY (webhook_id) REFERENCES public.pretixapi_webhook(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixapi_webhookeventlistener pretixapi_webhookeventlistener_webhook_id_5518ad8d_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixapi_webhookeventlistener + ADD CONSTRAINT pretixapi_webhookeventlistener_webhook_id_5518ad8d_fk FOREIGN KEY (webhook_id) REFERENCES public.pretixapi_webhook(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_attendeeprofile pretixbase_attendeep_customer_id_847a5c3a_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_attendeeprofile + ADD CONSTRAINT pretixbase_attendeep_customer_id_847a5c3a_fk_pretixbas FOREIGN KEY (customer_id) REFERENCES public.pretixbase_customer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_blockedticketsecret pretixbase_blockedticketsecret_event_id_9759946f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_blockedticketsecret + ADD CONSTRAINT pretixbase_blockedticketsecret_event_id_9759946f_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_blockedticketsecret pretixbase_blockedticketsecret_position_id_0f3564d1_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_blockedticketsecret + ADD CONSTRAINT pretixbase_blockedticketsecret_position_id_0f3564d1_fk FOREIGN KEY (position_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cachedcombinedticket pretixbase_cachedcombinedticket_order_id_45509bc4_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cachedcombinedticket + ADD CONSTRAINT pretixbase_cachedcombinedticket_order_id_45509bc4_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cachedticket pretixbase_cachedticket_order_position_id_b2c232a6_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cachedticket + ADD CONSTRAINT pretixbase_cachedticket_order_position_id_b2c232a6_fk FOREIGN KEY (order_position_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cancellationrequest pretixbase_cancellationrequest_order_id_5a61ecf9_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cancellationrequest + ADD CONSTRAINT pretixbase_cancellationrequest_order_id_5a61ecf9_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposit_used_membership_id_50406d4a_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposit_used_membership_id_50406d4a_fk_pretixbas FOREIGN KEY (used_membership_id) REFERENCES public.pretixbase_membership(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposition_addon_to_id_d9ab2dee_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposition_addon_to_id_d9ab2dee_fk FOREIGN KEY (addon_to_id) REFERENCES public.pretixbase_cartposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposition_discount_id_ee598399_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposition_discount_id_ee598399_fk FOREIGN KEY (discount_id) REFERENCES public.pretixbase_discount(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposition_event_id_c8039949_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposition_event_id_c8039949_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposition_item_id_453bc23d_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposition_item_id_453bc23d_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposition_seat_id_1b6c3faf_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposition_seat_id_1b6c3faf_fk FOREIGN KEY (seat_id) REFERENCES public.pretixbase_seat(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposition_subevent_id_8adb3b32_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposition_subevent_id_8adb3b32_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposition_variation_id_af1f0dfd_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposition_variation_id_af1f0dfd_fk FOREIGN KEY (variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_cartposition pretixbase_cartposition_voucher_id_a79e1879_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_cartposition + ADD CONSTRAINT pretixbase_cartposition_voucher_id_a79e1879_fk FOREIGN KEY (voucher_id) REFERENCES public.pretixbase_voucher(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkin pretixbase_checkin_device_id_b7b00655_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkin + ADD CONSTRAINT pretixbase_checkin_device_id_b7b00655_fk FOREIGN KEY (device_id) REFERENCES public.pretixbase_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkin pretixbase_checkin_gate_id_be6dcaba_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkin + ADD CONSTRAINT pretixbase_checkin_gate_id_be6dcaba_fk FOREIGN KEY (gate_id) REFERENCES public.pretixbase_gate(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkin pretixbase_checkin_list_id_edd48d9f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkin + ADD CONSTRAINT pretixbase_checkin_list_id_edd48d9f_fk FOREIGN KEY (list_id) REFERENCES public.pretixbase_checkinlist(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkin pretixbase_checkin_position_id_2b4241d7_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkin + ADD CONSTRAINT pretixbase_checkin_position_id_2b4241d7_fk FOREIGN KEY (position_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkin pretixbase_checkin_raw_item_id_30958c24_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkin + ADD CONSTRAINT pretixbase_checkin_raw_item_id_30958c24_fk FOREIGN KEY (raw_item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkin pretixbase_checkin_raw_subevent_id_2524e6b7_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkin + ADD CONSTRAINT pretixbase_checkin_raw_subevent_id_2524e6b7_fk FOREIGN KEY (raw_subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkin pretixbase_checkin_raw_variation_id_7a127580_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkin + ADD CONSTRAINT pretixbase_checkin_raw_variation_id_7a127580_fk FOREIGN KEY (raw_variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkinlist pretixbase_checkinlist_event_id_cf987659_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist + ADD CONSTRAINT pretixbase_checkinlist_event_id_cf987659_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkinlist_gates pretixbase_checkinlist_gates_checkinlist_id_a02b8e74_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist_gates + ADD CONSTRAINT pretixbase_checkinlist_gates_checkinlist_id_a02b8e74_fk FOREIGN KEY (checkinlist_id) REFERENCES public.pretixbase_checkinlist(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkinlist_gates pretixbase_checkinlist_gates_gate_id_0416bd0f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist_gates + ADD CONSTRAINT pretixbase_checkinlist_gates_gate_id_0416bd0f_fk FOREIGN KEY (gate_id) REFERENCES public.pretixbase_gate(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkinlist_limit_products pretixbase_checkinlist_li_checkinlist_id_95aa970b_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist_limit_products + ADD CONSTRAINT pretixbase_checkinlist_li_checkinlist_id_95aa970b_fk FOREIGN KEY (checkinlist_id) REFERENCES public.pretixbase_checkinlist(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkinlist_limit_products pretixbase_checkinlist_limit_products_item_id_d88aefb1_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist_limit_products + ADD CONSTRAINT pretixbase_checkinlist_limit_products_item_id_d88aefb1_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_checkinlist pretixbase_checkinlist_subevent_id_bd5b8106_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_checkinlist + ADD CONSTRAINT pretixbase_checkinlist_subevent_id_bd5b8106_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_customer pretixbase_customer_organizer_id_f65b87f8_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customer + ADD CONSTRAINT pretixbase_customer_organizer_id_f65b87f8_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_customer pretixbase_customer_provider_id_143d6a89_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customer + ADD CONSTRAINT pretixbase_customer_provider_id_143d6a89_fk_pretixbas FOREIGN KEY (provider_id) REFERENCES public.pretixbase_customerssoprovider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_customerssoaccesstoken pretixbase_customers_client_id_f7d43671_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssoaccesstoken + ADD CONSTRAINT pretixbase_customers_client_id_f7d43671_fk_pretixbas FOREIGN KEY (client_id) REFERENCES public.pretixbase_customerssoclient(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_customerssogrant pretixbase_customers_client_id_fd3ca1c0_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssogrant + ADD CONSTRAINT pretixbase_customers_client_id_fd3ca1c0_fk_pretixbas FOREIGN KEY (client_id) REFERENCES public.pretixbase_customerssoclient(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_customerssogrant pretixbase_customers_customer_id_1e011d8e_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssogrant + ADD CONSTRAINT pretixbase_customers_customer_id_1e011d8e_fk_pretixbas FOREIGN KEY (customer_id) REFERENCES public.pretixbase_customer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_customerssoaccesstoken pretixbase_customers_customer_id_f03b0bae_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssoaccesstoken + ADD CONSTRAINT pretixbase_customers_customer_id_f03b0bae_fk_pretixbas FOREIGN KEY (customer_id) REFERENCES public.pretixbase_customer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_customerssoclient pretixbase_customerssoclient_organizer_id_d84ecb5e_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssoclient + ADD CONSTRAINT pretixbase_customerssoclient_organizer_id_d84ecb5e_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_customerssoprovider pretixbase_customerssoprovider_organizer_id_a6716a65_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_customerssoprovider + ADD CONSTRAINT pretixbase_customerssoprovider_organizer_id_a6716a65_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_device pretixbase_device_gate_id_eea62af2_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device + ADD CONSTRAINT pretixbase_device_gate_id_eea62af2_fk FOREIGN KEY (gate_id) REFERENCES public.pretixbase_gate(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_device_limit_events pretixbase_device_limit_events_device_id_8c1335ff_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device_limit_events + ADD CONSTRAINT pretixbase_device_limit_events_device_id_8c1335ff_fk FOREIGN KEY (device_id) REFERENCES public.pretixbase_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_device_limit_events pretixbase_device_limit_events_event_id_cabc9720_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device_limit_events + ADD CONSTRAINT pretixbase_device_limit_events_event_id_cabc9720_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_device pretixbase_device_organizer_id_1fab75fa_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_device + ADD CONSTRAINT pretixbase_device_organizer_id_1fab75fa_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_discount_limit_sales_channels pretixbase_discount__discount_id_50a082b2_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_limit_sales_channels + ADD CONSTRAINT pretixbase_discount__discount_id_50a082b2_fk_pretixbas FOREIGN KEY (discount_id) REFERENCES public.pretixbase_discount(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_discount_limit_sales_channels pretixbase_discount__saleschannel_id_a7fc9bb6_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_limit_sales_channels + ADD CONSTRAINT pretixbase_discount__saleschannel_id_a7fc9bb6_fk_pretixbas FOREIGN KEY (saleschannel_id) REFERENCES public.pretixbase_saleschannel(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_discount_benefit_limit_products pretixbase_discount_benef_discount_id_0c578277_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_benefit_limit_products + ADD CONSTRAINT pretixbase_discount_benef_discount_id_0c578277_fk FOREIGN KEY (discount_id) REFERENCES public.pretixbase_discount(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_discount_benefit_limit_products pretixbase_discount_benefit_limit_products_item_id_35f5bdf8_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_benefit_limit_products + ADD CONSTRAINT pretixbase_discount_benefit_limit_products_item_id_35f5bdf8_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_discount_condition_limit_products pretixbase_discount_condi_discount_id_2268392e_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_condition_limit_products + ADD CONSTRAINT pretixbase_discount_condi_discount_id_2268392e_fk FOREIGN KEY (discount_id) REFERENCES public.pretixbase_discount(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_discount_condition_limit_products pretixbase_discount_condi_item_id_b895c6c9_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount_condition_limit_products + ADD CONSTRAINT pretixbase_discount_condi_item_id_b895c6c9_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_discount pretixbase_discount_event_id_15ffc96d_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_discount + ADD CONSTRAINT pretixbase_discount_event_id_15ffc96d_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_event_limit_sales_channels pretixbase_event_lim_event_id_c350f35d_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event_limit_sales_channels + ADD CONSTRAINT pretixbase_event_lim_event_id_c350f35d_fk_pretixbas FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_event_limit_sales_channels pretixbase_event_lim_saleschannel_id_bfb671ec_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event_limit_sales_channels + ADD CONSTRAINT pretixbase_event_lim_saleschannel_id_bfb671ec_fk_pretixbas FOREIGN KEY (saleschannel_id) REFERENCES public.pretixbase_saleschannel(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_event pretixbase_event_organizer_id_f31b86fa_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event + ADD CONSTRAINT pretixbase_event_organizer_id_f31b86fa_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_event pretixbase_event_seating_plan_id_11bc56fa_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event + ADD CONSTRAINT pretixbase_event_seating_plan_id_11bc56fa_fk FOREIGN KEY (seating_plan_id) REFERENCES public.pretixbase_seatingplan(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_event_settingsstore pretixbase_event_settingsstore_object_id_961c7369_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_event_settingsstore + ADD CONSTRAINT pretixbase_event_settingsstore_object_id_961c7369_fk FOREIGN KEY (object_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_eventfooterlink pretixbase_eventfooterlink_event_id_b74bc831_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_eventfooterlink + ADD CONSTRAINT pretixbase_eventfooterlink_event_id_b74bc831_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_eventmetaproperty pretixbase_eventmetaproperty_organizer_id_595552fd_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_eventmetaproperty + ADD CONSTRAINT pretixbase_eventmetaproperty_organizer_id_595552fd_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_eventmetavalue pretixbase_eventmetavalue_event_id_567f5820_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_eventmetavalue + ADD CONSTRAINT pretixbase_eventmetavalue_event_id_567f5820_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_eventmetavalue pretixbase_eventmetavalue_property_id_28f8ebf7_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_eventmetavalue + ADD CONSTRAINT pretixbase_eventmetavalue_property_id_28f8ebf7_fk FOREIGN KEY (property_id) REFERENCES public.pretixbase_eventmetaproperty(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_gate pretixbase_gate_organizer_id_d6070b77_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_gate + ADD CONSTRAINT pretixbase_gate_organizer_id_d6070b77_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcard pretixbase_giftcard_issued_in_id_8e59beb9_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcard + ADD CONSTRAINT pretixbase_giftcard_issued_in_id_8e59beb9_fk FOREIGN KEY (issued_in_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcard pretixbase_giftcard_issuer_id_57c2f4dd_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcard + ADD CONSTRAINT pretixbase_giftcard_issuer_id_57c2f4dd_fk FOREIGN KEY (issuer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcard pretixbase_giftcard_owner_ticket_id_d35b98d5_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcard + ADD CONSTRAINT pretixbase_giftcard_owner_ticket_id_d35b98d5_fk FOREIGN KEY (owner_ticket_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcardacceptance pretixbase_giftcardacceptance_acceptor_id_5f8d47de_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardacceptance + ADD CONSTRAINT pretixbase_giftcardacceptance_acceptor_id_5f8d47de_fk FOREIGN KEY (acceptor_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcardacceptance pretixbase_giftcardacceptance_issuer_id_740d7cdc_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardacceptance + ADD CONSTRAINT pretixbase_giftcardacceptance_issuer_id_740d7cdc_fk FOREIGN KEY (issuer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcardtransaction pretixbase_giftcardtransaction_acceptor_id_790772af_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardtransaction + ADD CONSTRAINT pretixbase_giftcardtransaction_acceptor_id_790772af_fk FOREIGN KEY (acceptor_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcardtransaction pretixbase_giftcardtransaction_card_id_2b213307_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardtransaction + ADD CONSTRAINT pretixbase_giftcardtransaction_card_id_2b213307_fk FOREIGN KEY (card_id) REFERENCES public.pretixbase_giftcard(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcardtransaction pretixbase_giftcardtransaction_order_id_9cc06375_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardtransaction + ADD CONSTRAINT pretixbase_giftcardtransaction_order_id_9cc06375_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcardtransaction pretixbase_giftcardtransaction_payment_id_21f4d416_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardtransaction + ADD CONSTRAINT pretixbase_giftcardtransaction_payment_id_21f4d416_fk FOREIGN KEY (payment_id) REFERENCES public.pretixbase_orderpayment(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_giftcardtransaction pretixbase_giftcardtransaction_refund_id_4852a01b_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_giftcardtransaction + ADD CONSTRAINT pretixbase_giftcardtransaction_refund_id_4852a01b_fk FOREIGN KEY (refund_id) REFERENCES public.pretixbase_orderrefund(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_historicpassword pretixbase_historicp_user_id_577b9c9f_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_historicpassword + ADD CONSTRAINT pretixbase_historicp_user_id_577b9c9f_fk_pretixbas FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoice pretixbase_invoice_event_id_4eb1793c_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoice + ADD CONSTRAINT pretixbase_invoice_event_id_4eb1793c_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoice pretixbase_invoice_order_id_ffa32f5d_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoice + ADD CONSTRAINT pretixbase_invoice_order_id_ffa32f5d_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoice pretixbase_invoice_organizer_id_928d7304_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoice + ADD CONSTRAINT pretixbase_invoice_organizer_id_928d7304_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoice pretixbase_invoice_refers_id_6ccf8629_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoice + ADD CONSTRAINT pretixbase_invoice_refers_id_6ccf8629_fk FOREIGN KEY (refers_id) REFERENCES public.pretixbase_invoice(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoiceaddress pretixbase_invoicead_customer_id_b7780c27_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoiceaddress + ADD CONSTRAINT pretixbase_invoicead_customer_id_b7780c27_fk_pretixbas FOREIGN KEY (customer_id) REFERENCES public.pretixbase_customer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoiceaddress pretixbase_invoiceaddress_order_id_3e8d3c70_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoiceaddress + ADD CONSTRAINT pretixbase_invoiceaddress_order_id_3e8d3c70_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoiceline pretixbase_invoiceline_invoice_id_8e8da2c5_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoiceline + ADD CONSTRAINT pretixbase_invoiceline_invoice_id_8e8da2c5_fk FOREIGN KEY (invoice_id) REFERENCES public.pretixbase_invoice(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoiceline pretixbase_invoiceline_item_id_4f120b6a_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoiceline + ADD CONSTRAINT pretixbase_invoiceline_item_id_4f120b6a_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoiceline pretixbase_invoiceline_subevent_id_69f4adc8_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoiceline + ADD CONSTRAINT pretixbase_invoiceline_subevent_id_69f4adc8_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_invoiceline pretixbase_invoiceline_variation_id_1bf843e9_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_invoiceline + ADD CONSTRAINT pretixbase_invoiceline_variation_id_1bf843e9_fk FOREIGN KEY (variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item pretixbase_item_category_id_8fa63715_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item + ADD CONSTRAINT pretixbase_item_category_id_8fa63715_fk FOREIGN KEY (category_id) REFERENCES public.pretixbase_itemcategory(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item pretixbase_item_event_id_6e8233b4_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item + ADD CONSTRAINT pretixbase_item_event_id_6e8233b4_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item pretixbase_item_grant_membership_typ_6949efbf_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item + ADD CONSTRAINT pretixbase_item_grant_membership_typ_6949efbf_fk_pretixbas FOREIGN KEY (grant_membership_type_id) REFERENCES public.pretixbase_membershiptype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item pretixbase_item_hidden_if_available_id_6d97361e_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item + ADD CONSTRAINT pretixbase_item_hidden_if_available_id_6d97361e_fk FOREIGN KEY (hidden_if_available_id) REFERENCES public.pretixbase_quota(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item pretixbase_item_hidden_if_item_avail_cf6313d5_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item + ADD CONSTRAINT pretixbase_item_hidden_if_item_avail_cf6313d5_fk_pretixbas FOREIGN KEY (hidden_if_item_available_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item_limit_sales_channels pretixbase_item_limi_item_id_7bbcbf9e_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item_limit_sales_channels + ADD CONSTRAINT pretixbase_item_limi_item_id_7bbcbf9e_fk_pretixbas FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item_limit_sales_channels pretixbase_item_limi_saleschannel_id_b265590a_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item_limit_sales_channels + ADD CONSTRAINT pretixbase_item_limi_saleschannel_id_b265590a_fk_pretixbas FOREIGN KEY (saleschannel_id) REFERENCES public.pretixbase_saleschannel(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item_require_membership_types pretixbase_item_requ_membershiptype_id_6dff585d_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item_require_membership_types + ADD CONSTRAINT pretixbase_item_requ_membershiptype_id_6dff585d_fk_pretixbas FOREIGN KEY (membershiptype_id) REFERENCES public.pretixbase_membershiptype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item_require_membership_types pretixbase_item_require_membership_types_item_id_9a38c019_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item_require_membership_types + ADD CONSTRAINT pretixbase_item_require_membership_types_item_id_9a38c019_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_item pretixbase_item_tax_rule_id_f501b784_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_item + ADD CONSTRAINT pretixbase_item_tax_rule_id_f501b784_fk FOREIGN KEY (tax_rule_id) REFERENCES public.pretixbase_taxrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemaddon pretixbase_itemaddon_addon_category_id_370defeb_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemaddon + ADD CONSTRAINT pretixbase_itemaddon_addon_category_id_370defeb_fk FOREIGN KEY (addon_category_id) REFERENCES public.pretixbase_itemcategory(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemaddon pretixbase_itemaddon_base_item_id_1f94d65a_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemaddon + ADD CONSTRAINT pretixbase_itemaddon_base_item_id_1f94d65a_fk FOREIGN KEY (base_item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itembundle pretixbase_itembundle_base_item_id_ac6691f3_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itembundle + ADD CONSTRAINT pretixbase_itembundle_base_item_id_ac6691f3_fk FOREIGN KEY (base_item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itembundle pretixbase_itembundle_bundled_item_id_9f6f0a8f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itembundle + ADD CONSTRAINT pretixbase_itembundle_bundled_item_id_9f6f0a8f_fk FOREIGN KEY (bundled_item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itembundle pretixbase_itembundle_bundled_variation_id_cd1fba5f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itembundle + ADD CONSTRAINT pretixbase_itembundle_bundled_variation_id_cd1fba5f_fk FOREIGN KEY (bundled_variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemcategory_cross_selling_match_products pretixbase_itemcateg_item_id_ded4eff4_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemcategory_cross_selling_match_products + ADD CONSTRAINT pretixbase_itemcateg_item_id_ded4eff4_fk_pretixbas FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemcategory_cross_selling_match_products pretixbase_itemcateg_itemcategory_id_b6e4cc8d_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemcategory_cross_selling_match_products + ADD CONSTRAINT pretixbase_itemcateg_itemcategory_id_b6e4cc8d_fk_pretixbas FOREIGN KEY (itemcategory_id) REFERENCES public.pretixbase_itemcategory(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemcategory pretixbase_itemcategory_event_id_0827a86a_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemcategory + ADD CONSTRAINT pretixbase_itemcategory_event_id_0827a86a_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemmetaproperty pretixbase_itemmetaproperty_event_id_3737ebd9_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemmetaproperty + ADD CONSTRAINT pretixbase_itemmetaproperty_event_id_3737ebd9_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemmetavalue pretixbase_itemmetavalue_item_id_721fc0d4_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemmetavalue + ADD CONSTRAINT pretixbase_itemmetavalue_item_id_721fc0d4_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemmetavalue pretixbase_itemmetavalue_property_id_2e880dd6_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemmetavalue + ADD CONSTRAINT pretixbase_itemmetavalue_property_id_2e880dd6_fk FOREIGN KEY (property_id) REFERENCES public.pretixbase_itemmetaproperty(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemvariation_limit_sales_channels pretixbase_itemvaria_itemvariation_id_873fc11b_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation_limit_sales_channels + ADD CONSTRAINT pretixbase_itemvaria_itemvariation_id_873fc11b_fk_pretixbas FOREIGN KEY (itemvariation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemvariation_require_membership_types pretixbase_itemvaria_membershiptype_id_9503bc9d_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation_require_membership_types + ADD CONSTRAINT pretixbase_itemvaria_membershiptype_id_9503bc9d_fk_pretixbas FOREIGN KEY (membershiptype_id) REFERENCES public.pretixbase_membershiptype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemvariation_limit_sales_channels pretixbase_itemvaria_saleschannel_id_c16b0528_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation_limit_sales_channels + ADD CONSTRAINT pretixbase_itemvaria_saleschannel_id_c16b0528_fk_pretixbas FOREIGN KEY (saleschannel_id) REFERENCES public.pretixbase_saleschannel(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemvariation_require_membership_types pretixbase_itemvariation__itemvariation_id_f02cc223_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation_require_membership_types + ADD CONSTRAINT pretixbase_itemvariation__itemvariation_id_f02cc223_fk FOREIGN KEY (itemvariation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemvariation pretixbase_itemvariation_item_id_e3d28791_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariation + ADD CONSTRAINT pretixbase_itemvariation_item_id_e3d28791_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemvariationmetavalue pretixbase_itemvariationmetavalue_property_id_cd4d3754_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariationmetavalue + ADD CONSTRAINT pretixbase_itemvariationmetavalue_property_id_cd4d3754_fk FOREIGN KEY (property_id) REFERENCES public.pretixbase_itemmetaproperty(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_itemvariationmetavalue pretixbase_itemvariationmetavalue_variation_id_bffd1e6e_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_itemvariationmetavalue + ADD CONSTRAINT pretixbase_itemvariationmetavalue_variation_id_bffd1e6e_fk FOREIGN KEY (variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_logentry pretixbase_logentry_api_token_id_e439bab1_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_logentry + ADD CONSTRAINT pretixbase_logentry_api_token_id_e439bab1_fk FOREIGN KEY (api_token_id) REFERENCES public.pretixbase_teamapitoken(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_logentry pretixbase_logentry_content_type_id_f187b95a_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_logentry + ADD CONSTRAINT pretixbase_logentry_content_type_id_f187b95a_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_logentry pretixbase_logentry_device_id_de073446_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_logentry + ADD CONSTRAINT pretixbase_logentry_device_id_de073446_fk FOREIGN KEY (device_id) REFERENCES public.pretixbase_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_logentry pretixbase_logentry_event_id_3a3653c2_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_logentry + ADD CONSTRAINT pretixbase_logentry_event_id_3a3653c2_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_logentry pretixbase_logentry_oauth_application_id_1494edd6_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_logentry + ADD CONSTRAINT pretixbase_logentry_oauth_application_id_1494edd6_fk_pretixapi FOREIGN KEY (oauth_application_id) REFERENCES public.pretixapi_oauthapplication(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_logentry pretixbase_logentry_organizer_link_id_ef70bd00_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_logentry + ADD CONSTRAINT pretixbase_logentry_organizer_link_id_ef70bd00_fk_pretixbas FOREIGN KEY (organizer_link_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_logentry pretixbase_logentry_user_id_ba1c5649_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_logentry + ADD CONSTRAINT pretixbase_logentry_user_id_ba1c5649_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_mediumkeyset pretixbase_mediumkeyset_organizer_id_32d0ffd3_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_mediumkeyset + ADD CONSTRAINT pretixbase_mediumkeyset_organizer_id_32d0ffd3_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_membership pretixbase_membershi_customer_id_4ff4042e_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_membership + ADD CONSTRAINT pretixbase_membershi_customer_id_4ff4042e_fk_pretixbas FOREIGN KEY (customer_id) REFERENCES public.pretixbase_customer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_membership pretixbase_membershi_membership_type_id_444c95ba_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_membership + ADD CONSTRAINT pretixbase_membershi_membership_type_id_444c95ba_fk_pretixbas FOREIGN KEY (membership_type_id) REFERENCES public.pretixbase_membershiptype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_membership pretixbase_membership_granted_in_id_1b138db4_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_membership + ADD CONSTRAINT pretixbase_membership_granted_in_id_1b138db4_fk FOREIGN KEY (granted_in_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_membershiptype pretixbase_membershiptype_organizer_id_2eef68eb_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_membershiptype + ADD CONSTRAINT pretixbase_membershiptype_organizer_id_2eef68eb_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_notificationsetting pretixbase_notificationsetting_event_id_f0fd9901_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_notificationsetting + ADD CONSTRAINT pretixbase_notificationsetting_event_id_f0fd9901_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_notificationsetting pretixbase_notificationsetting_user_id_c493b5ba_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_notificationsetting + ADD CONSTRAINT pretixbase_notificationsetting_user_id_c493b5ba_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_order pretixbase_order_customer_id_5b72f50b_fk_pretixbase_customer_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_order + ADD CONSTRAINT pretixbase_order_customer_id_5b72f50b_fk_pretixbase_customer_id FOREIGN KEY (customer_id) REFERENCES public.pretixbase_customer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_order pretixbase_order_event_id_fcc6f9c6_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_order + ADD CONSTRAINT pretixbase_order_event_id_fcc6f9c6_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_order pretixbase_order_organizer_id_015a3ef0_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_order + ADD CONSTRAINT pretixbase_order_organizer_id_015a3ef0_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_order pretixbase_order_sales_channel_id_f03dc6c1_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_order + ADD CONSTRAINT pretixbase_order_sales_channel_id_f03dc6c1_fk_pretixbas FOREIGN KEY (sales_channel_id) REFERENCES public.pretixbase_saleschannel(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderfee pretixbase_orderfee_order_id_b8c4a186_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderfee + ADD CONSTRAINT pretixbase_orderfee_order_id_b8c4a186_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderfee pretixbase_orderfee_tax_rule_id_082755a4_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderfee + ADD CONSTRAINT pretixbase_orderfee_tax_rule_id_082755a4_fk FOREIGN KEY (tax_rule_id) REFERENCES public.pretixbase_taxrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderpayment pretixbase_orderpayment_fee_id_392fba8e_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderpayment + ADD CONSTRAINT pretixbase_orderpayment_fee_id_392fba8e_fk FOREIGN KEY (fee_id) REFERENCES public.pretixbase_orderfee(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderpayment pretixbase_orderpayment_order_id_80a5e1fb_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderpayment + ADD CONSTRAINT pretixbase_orderpayment_order_id_80a5e1fb_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposi_organizer_id_9df72b87_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposi_organizer_id_9df72b87_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposi_used_membership_id_1c048a26_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposi_used_membership_id_1c048a26_fk_pretixbas FOREIGN KEY (used_membership_id) REFERENCES public.pretixbase_membership(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_addon_to_id_480d4760_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_addon_to_id_480d4760_fk FOREIGN KEY (addon_to_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_discount_id_158a0083_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_discount_id_158a0083_fk FOREIGN KEY (discount_id) REFERENCES public.pretixbase_discount(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_item_id_6eb5dffe_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_item_id_6eb5dffe_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_order_id_0d44232b_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_order_id_0d44232b_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_seat_id_37ad0d08_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_seat_id_37ad0d08_fk FOREIGN KEY (seat_id) REFERENCES public.pretixbase_seat(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_subevent_id_b1dda9a0_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_subevent_id_b1dda9a0_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_tax_rule_id_6564b2f1_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_tax_rule_id_6564b2f1_fk FOREIGN KEY (tax_rule_id) REFERENCES public.pretixbase_taxrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_variation_id_04605fc4_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_variation_id_04605fc4_fk FOREIGN KEY (variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderposition pretixbase_orderposition_voucher_id_e1ed13ae_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderposition + ADD CONSTRAINT pretixbase_orderposition_voucher_id_e1ed13ae_fk FOREIGN KEY (voucher_id) REFERENCES public.pretixbase_voucher(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderrefund pretixbase_orderrefund_order_id_029acd4f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderrefund + ADD CONSTRAINT pretixbase_orderrefund_order_id_029acd4f_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_orderrefund pretixbase_orderrefund_payment_id_9476c326_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_orderrefund + ADD CONSTRAINT pretixbase_orderrefund_payment_id_9476c326_fk FOREIGN KEY (payment_id) REFERENCES public.pretixbase_orderpayment(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_organizer_settingsstore pretixbase_organizer_settingsstore_object_id_b55adabf_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_organizer_settingsstore + ADD CONSTRAINT pretixbase_organizer_settingsstore_object_id_b55adabf_fk FOREIGN KEY (object_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_organizerfooterlink pretixbase_organizerfooterlink_organizer_id_ffdf1d52_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_organizerfooterlink + ADD CONSTRAINT pretixbase_organizerfooterlink_organizer_id_ffdf1d52_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_printlog pretixbase_printlog_api_token_id_d980bbf2_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_printlog + ADD CONSTRAINT pretixbase_printlog_api_token_id_d980bbf2_fk_pretixbas FOREIGN KEY (api_token_id) REFERENCES public.pretixbase_teamapitoken(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_printlog pretixbase_printlog_device_id_bd92c550_fk_pretixbase_device_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_printlog + ADD CONSTRAINT pretixbase_printlog_device_id_bd92c550_fk_pretixbase_device_id FOREIGN KEY (device_id) REFERENCES public.pretixbase_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_printlog pretixbase_printlog_oauth_application_id_7a3e68a8_fk_pretixapi; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_printlog + ADD CONSTRAINT pretixbase_printlog_oauth_application_id_7a3e68a8_fk_pretixapi FOREIGN KEY (oauth_application_id) REFERENCES public.pretixapi_oauthapplication(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_printlog pretixbase_printlog_position_id_c3813d93_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_printlog + ADD CONSTRAINT pretixbase_printlog_position_id_c3813d93_fk_pretixbas FOREIGN KEY (position_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_printlog pretixbase_printlog_user_id_54459518_fk_pretixbase_user_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_printlog + ADD CONSTRAINT pretixbase_printlog_user_id_54459518_fk_pretixbase_user_id FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_question pretixbase_question_dependency_question_id_a02199c8_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_question + ADD CONSTRAINT pretixbase_question_dependency_question_id_a02199c8_fk FOREIGN KEY (dependency_question_id) REFERENCES public.pretixbase_question(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_question pretixbase_question_event_id_ca103445_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_question + ADD CONSTRAINT pretixbase_question_event_id_ca103445_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_question_items pretixbase_question_items_item_id_ceeaebc0_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_question_items + ADD CONSTRAINT pretixbase_question_items_item_id_ceeaebc0_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_question_items pretixbase_question_items_question_id_fc7dc2f8_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_question_items + ADD CONSTRAINT pretixbase_question_items_question_id_fc7dc2f8_fk FOREIGN KEY (question_id) REFERENCES public.pretixbase_question(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_questionanswer pretixbase_questionanswer_cartposition_id_de73bb5f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer + ADD CONSTRAINT pretixbase_questionanswer_cartposition_id_de73bb5f_fk FOREIGN KEY (cartposition_id) REFERENCES public.pretixbase_cartposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_questionanswer_options pretixbase_questionanswer_options_questionanswer_id_21ac63b6_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer_options + ADD CONSTRAINT pretixbase_questionanswer_options_questionanswer_id_21ac63b6_fk FOREIGN KEY (questionanswer_id) REFERENCES public.pretixbase_questionanswer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_questionanswer_options pretixbase_questionanswer_options_questionoption_id_641ff2f6_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer_options + ADD CONSTRAINT pretixbase_questionanswer_options_questionoption_id_641ff2f6_fk FOREIGN KEY (questionoption_id) REFERENCES public.pretixbase_questionoption(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_questionanswer pretixbase_questionanswer_orderposition_id_1ccb6977_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer + ADD CONSTRAINT pretixbase_questionanswer_orderposition_id_1ccb6977_fk FOREIGN KEY (orderposition_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_questionanswer pretixbase_questionanswer_question_id_9a80a111_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionanswer + ADD CONSTRAINT pretixbase_questionanswer_question_id_9a80a111_fk FOREIGN KEY (question_id) REFERENCES public.pretixbase_question(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_questionoption pretixbase_questionoption_question_id_67c888dd_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_questionoption + ADD CONSTRAINT pretixbase_questionoption_question_id_67c888dd_fk FOREIGN KEY (question_id) REFERENCES public.pretixbase_question(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_quota pretixbase_quota_event_id_e57269de_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota + ADD CONSTRAINT pretixbase_quota_event_id_e57269de_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_quota_items pretixbase_quota_items_item_id_f7234603_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota_items + ADD CONSTRAINT pretixbase_quota_items_item_id_f7234603_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_quota_items pretixbase_quota_items_quota_id_222bf960_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota_items + ADD CONSTRAINT pretixbase_quota_items_quota_id_222bf960_fk FOREIGN KEY (quota_id) REFERENCES public.pretixbase_quota(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_quota_variations pretixbase_quota_variations_itemvariation_id_c3ea6748_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota_variations + ADD CONSTRAINT pretixbase_quota_variations_itemvariation_id_c3ea6748_fk FOREIGN KEY (itemvariation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_quota_variations pretixbase_quota_variations_quota_id_73db970d_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_quota_variations + ADD CONSTRAINT pretixbase_quota_variations_quota_id_73db970d_fk FOREIGN KEY (quota_id) REFERENCES public.pretixbase_quota(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_reusablemedium pretixbase_reusablem_customer_id_8b2f59c4_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_reusablemedium + ADD CONSTRAINT pretixbase_reusablem_customer_id_8b2f59c4_fk_pretixbas FOREIGN KEY (customer_id) REFERENCES public.pretixbase_customer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_reusablemedium pretixbase_reusablemedium_linked_giftcard_id_d585c7de_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_reusablemedium + ADD CONSTRAINT pretixbase_reusablemedium_linked_giftcard_id_d585c7de_fk FOREIGN KEY (linked_giftcard_id) REFERENCES public.pretixbase_giftcard(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_reusablemedium pretixbase_reusablemedium_linked_orderposition_id_471ad0bd_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_reusablemedium + ADD CONSTRAINT pretixbase_reusablemedium_linked_orderposition_id_471ad0bd_fk FOREIGN KEY (linked_orderposition_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_reusablemedium pretixbase_reusablemedium_organizer_id_7e593c5c_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_reusablemedium + ADD CONSTRAINT pretixbase_reusablemedium_organizer_id_7e593c5c_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_revokedticketsecret pretixbase_revokedticketsecret_event_id_d697417b_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_revokedticketsecret + ADD CONSTRAINT pretixbase_revokedticketsecret_event_id_d697417b_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_revokedticketsecret pretixbase_revokedticketsecret_position_id_6e4cdbd0_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_revokedticketsecret + ADD CONSTRAINT pretixbase_revokedticketsecret_position_id_6e4cdbd0_fk FOREIGN KEY (position_id) REFERENCES public.pretixbase_orderposition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_saleschannel pretixbase_saleschan_organizer_id_8cace410_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_saleschannel + ADD CONSTRAINT pretixbase_saleschan_organizer_id_8cace410_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_scheduledeventexport pretixbase_scheduledeventexport_event_id_1ffd0c7f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_scheduledeventexport + ADD CONSTRAINT pretixbase_scheduledeventexport_event_id_1ffd0c7f_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_scheduledeventexport pretixbase_scheduledeventexport_owner_id_4f33c70f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_scheduledeventexport + ADD CONSTRAINT pretixbase_scheduledeventexport_owner_id_4f33c70f_fk FOREIGN KEY (owner_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_scheduledorganizerexport pretixbase_scheduledorganizerexport_organizer_id_28f937cc_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_scheduledorganizerexport + ADD CONSTRAINT pretixbase_scheduledorganizerexport_organizer_id_28f937cc_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_scheduledorganizerexport pretixbase_scheduledorganizerexport_owner_id_c2dd2b2a_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_scheduledorganizerexport + ADD CONSTRAINT pretixbase_scheduledorganizerexport_owner_id_c2dd2b2a_fk FOREIGN KEY (owner_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_seat pretixbase_seat_event_id_9a773a14_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seat + ADD CONSTRAINT pretixbase_seat_event_id_9a773a14_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_seat pretixbase_seat_product_id_73407f46_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seat + ADD CONSTRAINT pretixbase_seat_product_id_73407f46_fk FOREIGN KEY (product_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_seat pretixbase_seat_subevent_id_278a2c92_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seat + ADD CONSTRAINT pretixbase_seat_subevent_id_278a2c92_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_seatcategorymapping pretixbase_seatcategorymapping_event_id_f3de411f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seatcategorymapping + ADD CONSTRAINT pretixbase_seatcategorymapping_event_id_f3de411f_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_seatcategorymapping pretixbase_seatcategorymapping_product_id_22916f47_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seatcategorymapping + ADD CONSTRAINT pretixbase_seatcategorymapping_product_id_22916f47_fk FOREIGN KEY (product_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_seatcategorymapping pretixbase_seatcategorymapping_subevent_id_e0f8e643_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seatcategorymapping + ADD CONSTRAINT pretixbase_seatcategorymapping_subevent_id_e0f8e643_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_seatingplan pretixbase_seatingplan_organizer_id_373881ef_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_seatingplan + ADD CONSTRAINT pretixbase_seatingplan_organizer_id_373881ef_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_staffsession pretixbase_staffsession_user_id_dbe96c7a_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_staffsession + ADD CONSTRAINT pretixbase_staffsession_user_id_dbe96c7a_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_staffsessionauditlog pretixbase_staffsessionauditlog_impersonating_id_7d7562e3_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_staffsessionauditlog + ADD CONSTRAINT pretixbase_staffsessionauditlog_impersonating_id_7d7562e3_fk FOREIGN KEY (impersonating_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_staffsessionauditlog pretixbase_staffsessionauditlog_session_id_48ead8a1_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_staffsessionauditlog + ADD CONSTRAINT pretixbase_staffsessionauditlog_session_id_48ead8a1_fk FOREIGN KEY (session_id) REFERENCES public.pretixbase_staffsession(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_subevent pretixbase_subevent_event_id_3ca2e6c9_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subevent + ADD CONSTRAINT pretixbase_subevent_event_id_3ca2e6c9_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_subevent pretixbase_subevent_seating_plan_id_5720ab67_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subevent + ADD CONSTRAINT pretixbase_subevent_seating_plan_id_5720ab67_fk FOREIGN KEY (seating_plan_id) REFERENCES public.pretixbase_seatingplan(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_subeventitem pretixbase_subeventitem_item_id_87c1ba29_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subeventitem + ADD CONSTRAINT pretixbase_subeventitem_item_id_87c1ba29_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_subeventitemvariation pretixbase_subeventitemvariation_subevent_id_9fc7911f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subeventitemvariation + ADD CONSTRAINT pretixbase_subeventitemvariation_subevent_id_9fc7911f_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_subeventitemvariation pretixbase_subeventitemvariation_variation_id_182b380a_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subeventitemvariation + ADD CONSTRAINT pretixbase_subeventitemvariation_variation_id_182b380a_fk FOREIGN KEY (variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_subeventmetavalue pretixbase_subeventmetavalue_property_id_bda97d56_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subeventmetavalue + ADD CONSTRAINT pretixbase_subeventmetavalue_property_id_bda97d56_fk FOREIGN KEY (property_id) REFERENCES public.pretixbase_eventmetaproperty(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_subeventmetavalue pretixbase_subeventmetavalue_subevent_id_b97a87d2_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_subeventmetavalue + ADD CONSTRAINT pretixbase_subeventmetavalue_subevent_id_b97a87d2_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_taxrule pretixbase_taxrule_event_id_178a74ee_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_taxrule + ADD CONSTRAINT pretixbase_taxrule_event_id_178a74ee_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_team_limit_events pretixbase_team_limit_events_event_id_f667e127_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team_limit_events + ADD CONSTRAINT pretixbase_team_limit_events_event_id_f667e127_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_team_limit_events pretixbase_team_limit_events_team_id_0612e133_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team_limit_events + ADD CONSTRAINT pretixbase_team_limit_events_team_id_0612e133_fk FOREIGN KEY (team_id) REFERENCES public.pretixbase_team(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_team_members pretixbase_team_members_team_id_9136ddb5_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team_members + ADD CONSTRAINT pretixbase_team_members_team_id_9136ddb5_fk FOREIGN KEY (team_id) REFERENCES public.pretixbase_team(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_team_members pretixbase_team_members_user_id_ee9124e2_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team_members + ADD CONSTRAINT pretixbase_team_members_user_id_ee9124e2_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_team pretixbase_team_organizer_id_05a40a53_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_team + ADD CONSTRAINT pretixbase_team_organizer_id_05a40a53_fk FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_teamapitoken pretixbase_teamapitoken_team_id_7c6c0b4b_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_teamapitoken + ADD CONSTRAINT pretixbase_teamapitoken_team_id_7c6c0b4b_fk FOREIGN KEY (team_id) REFERENCES public.pretixbase_team(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_teaminvite pretixbase_teaminvite_team_id_bfe11558_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_teaminvite + ADD CONSTRAINT pretixbase_teaminvite_team_id_bfe11558_fk FOREIGN KEY (team_id) REFERENCES public.pretixbase_team(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_transaction pretixbase_transaction_item_id_96bec76f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_transaction + ADD CONSTRAINT pretixbase_transaction_item_id_96bec76f_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_transaction pretixbase_transaction_order_id_1c33c439_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_transaction + ADD CONSTRAINT pretixbase_transaction_order_id_1c33c439_fk FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_transaction pretixbase_transaction_subevent_id_679753d8_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_transaction + ADD CONSTRAINT pretixbase_transaction_subevent_id_679753d8_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_transaction pretixbase_transaction_tax_rule_id_f0e678e5_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_transaction + ADD CONSTRAINT pretixbase_transaction_tax_rule_id_f0e678e5_fk FOREIGN KEY (tax_rule_id) REFERENCES public.pretixbase_taxrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_transaction pretixbase_transaction_variation_id_6ab9f00d_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_transaction + ADD CONSTRAINT pretixbase_transaction_variation_id_6ab9f00d_fk FOREIGN KEY (variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_u2fdevice pretixbase_u2fdevice_user_id_83ffb7c2_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_u2fdevice + ADD CONSTRAINT pretixbase_u2fdevice_user_id_83ffb7c2_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_user_groups pretixbase_user_groups_group_id_98f0aee4_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user_groups + ADD CONSTRAINT pretixbase_user_groups_group_id_98f0aee4_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_user_groups pretixbase_user_groups_user_id_844303d2_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user_groups + ADD CONSTRAINT pretixbase_user_groups_user_id_844303d2_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_user_user_permissions pretixbase_user_user_permission_id_dfd420d0_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user_user_permissions + ADD CONSTRAINT pretixbase_user_user_permission_id_dfd420d0_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_user_user_permissions pretixbase_user_user_permissions_user_id_a8c52ecb_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_user_user_permissions + ADD CONSTRAINT pretixbase_user_user_permissions_user_id_a8c52ecb_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_userknownloginsource pretixbase_userknown_user_id_ed8d12c5_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_userknownloginsource + ADD CONSTRAINT pretixbase_userknown_user_id_ed8d12c5_fk_pretixbas FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_voucher pretixbase_voucher_event_id_1bd19b72_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_voucher + ADD CONSTRAINT pretixbase_voucher_event_id_1bd19b72_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_voucher pretixbase_voucher_item_id_7082505d_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_voucher + ADD CONSTRAINT pretixbase_voucher_item_id_7082505d_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_voucher pretixbase_voucher_quota_id_f1a35cde_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_voucher + ADD CONSTRAINT pretixbase_voucher_quota_id_f1a35cde_fk FOREIGN KEY (quota_id) REFERENCES public.pretixbase_quota(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_voucher pretixbase_voucher_seat_id_b7906d99_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_voucher + ADD CONSTRAINT pretixbase_voucher_seat_id_b7906d99_fk FOREIGN KEY (seat_id) REFERENCES public.pretixbase_seat(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_voucher pretixbase_voucher_subevent_id_dbc0b6a2_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_voucher + ADD CONSTRAINT pretixbase_voucher_subevent_id_dbc0b6a2_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_voucher pretixbase_voucher_variation_id_8b959226_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_voucher + ADD CONSTRAINT pretixbase_voucher_variation_id_8b959226_fk FOREIGN KEY (variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_waitinglistentry pretixbase_waitinglistentry_event_id_f29b59b0_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_waitinglistentry + ADD CONSTRAINT pretixbase_waitinglistentry_event_id_f29b59b0_fk FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_waitinglistentry pretixbase_waitinglistentry_item_id_3f39aada_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_waitinglistentry + ADD CONSTRAINT pretixbase_waitinglistentry_item_id_3f39aada_fk FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_waitinglistentry pretixbase_waitinglistentry_subevent_id_8bda61c7_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_waitinglistentry + ADD CONSTRAINT pretixbase_waitinglistentry_subevent_id_8bda61c7_fk FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_waitinglistentry pretixbase_waitinglistentry_variation_id_8f59d1c1_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_waitinglistentry + ADD CONSTRAINT pretixbase_waitinglistentry_variation_id_8f59d1c1_fk FOREIGN KEY (variation_id) REFERENCES public.pretixbase_itemvariation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_waitinglistentry pretixbase_waitinglistentry_voucher_id_109e4555_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_waitinglistentry + ADD CONSTRAINT pretixbase_waitinglistentry_voucher_id_109e4555_fk FOREIGN KEY (voucher_id) REFERENCES public.pretixbase_voucher(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixbase_webauthndevice pretixbase_webauthndevice_user_id_7fbd58ca_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixbase_webauthndevice + ADD CONSTRAINT pretixbase_webauthndevice_user_id_7fbd58ca_fk FOREIGN KEY (user_id) REFERENCES public.pretixbase_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixmultidomain_alternativedomainassignment pretixmultidomain_al_domain_id_e33d054f_fk_pretixmul; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixmultidomain_alternativedomainassignment + ADD CONSTRAINT pretixmultidomain_al_domain_id_e33d054f_fk_pretixmul FOREIGN KEY (domain_id) REFERENCES public.pretixmultidomain_knowndomain(domainname) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixmultidomain_alternativedomainassignment pretixmultidomain_al_event_id_d00c1ff4_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixmultidomain_alternativedomainassignment + ADD CONSTRAINT pretixmultidomain_al_event_id_d00c1ff4_fk_pretixbas FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixmultidomain_knowndomain pretixmultidomain_kn_event_id_4fe10ab5_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixmultidomain_knowndomain + ADD CONSTRAINT pretixmultidomain_kn_event_id_4fe10ab5_fk_pretixbas FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: pretixmultidomain_knowndomain pretixmultidomain_kn_organizer_id_2d571a7f_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.pretixmultidomain_knowndomain + ADD CONSTRAINT pretixmultidomain_kn_organizer_id_2d571a7f_fk_pretixbas FOREIGN KEY (organizer_id) REFERENCES public.pretixbase_organizer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: sendmail_rule sendmail_rule_event_id_9db08b05_fk_pretixbase_event_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_rule + ADD CONSTRAINT sendmail_rule_event_id_9db08b05_fk_pretixbase_event_id FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: sendmail_rule_limit_products sendmail_rule_limit__item_id_8d260469_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_rule_limit_products + ADD CONSTRAINT sendmail_rule_limit__item_id_8d260469_fk_pretixbas FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: sendmail_rule_limit_products sendmail_rule_limit__rule_id_64da4147_fk_sendmail_; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_rule_limit_products + ADD CONSTRAINT sendmail_rule_limit__rule_id_64da4147_fk_sendmail_ FOREIGN KEY (rule_id) REFERENCES public.sendmail_rule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: sendmail_rule sendmail_rule_subevent_id_98a124cb_fk_pretixbase_subevent_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_rule + ADD CONSTRAINT sendmail_rule_subevent_id_98a124cb_fk_pretixbase_subevent_id FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: sendmail_scheduledmail sendmail_scheduledma_subevent_id_0d0c676f_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_scheduledmail + ADD CONSTRAINT sendmail_scheduledma_subevent_id_0d0c676f_fk_pretixbas FOREIGN KEY (subevent_id) REFERENCES public.pretixbase_subevent(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: sendmail_scheduledmail sendmail_scheduledmail_event_id_7b9dd927_fk_pretixbase_event_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_scheduledmail + ADD CONSTRAINT sendmail_scheduledmail_event_id_7b9dd927_fk_pretixbase_event_id FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: sendmail_scheduledmail sendmail_scheduledmail_rule_id_966c05ac_fk_sendmail_rule_id; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.sendmail_scheduledmail + ADD CONSTRAINT sendmail_scheduledmail_rule_id_966c05ac_fk_sendmail_rule_id FOREIGN KEY (rule_id) REFERENCES public.sendmail_rule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stripe_referencedstripeobject stripe_referencedstr_order_id_c9c61aeb_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.stripe_referencedstripeobject + ADD CONSTRAINT stripe_referencedstr_order_id_c9c61aeb_fk_pretixbas FOREIGN KEY (order_id) REFERENCES public.pretixbase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stripe_referencedstripeobject stripe_referencedstr_payment_id_51b1ab47_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.stripe_referencedstripeobject + ADD CONSTRAINT stripe_referencedstr_payment_id_51b1ab47_fk_pretixbas FOREIGN KEY (payment_id) REFERENCES public.pretixbase_orderpayment(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ticketoutputpdf_ticketlayout ticketoutputpdf_tick_event_id_7119c6d2_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.ticketoutputpdf_ticketlayout + ADD CONSTRAINT ticketoutputpdf_tick_event_id_7119c6d2_fk_pretixbas FOREIGN KEY (event_id) REFERENCES public.pretixbase_event(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem ticketoutputpdf_tick_item_id_273d9107_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.ticketoutputpdf_ticketlayoutitem + ADD CONSTRAINT ticketoutputpdf_tick_item_id_273d9107_fk_pretixbas FOREIGN KEY (item_id) REFERENCES public.pretixbase_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem ticketoutputpdf_tick_sales_channel_id_1d14eea1_fk_pretixbas; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.ticketoutputpdf_ticketlayoutitem + ADD CONSTRAINT ticketoutputpdf_tick_sales_channel_id_1d14eea1_fk_pretixbas FOREIGN KEY (sales_channel_id) REFERENCES public.pretixbase_saleschannel(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ticketoutputpdf_ticketlayoutitem ticketoutputpdf_ticketlayoutitem_layout_id_9b76e49f_fk; Type: FK CONSTRAINT; Schema: public; Owner: pretix +-- + +ALTER TABLE ONLY public.ticketoutputpdf_ticketlayoutitem + ADD CONSTRAINT ticketoutputpdf_ticketlayoutitem_layout_id_9b76e49f_fk FOREIGN KEY (layout_id) REFERENCES public.ticketoutputpdf_ticketlayout(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: pretix +-- + +REVOKE USAGE ON SCHEMA public FROM PUBLIC; + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/.docker/pretix/dumps/pretix.sql.gz b/.docker/pretix/dumps/pretix.sql.gz deleted file mode 100644 index dbeeebda4..000000000 Binary files a/.docker/pretix/dumps/pretix.sql.gz and /dev/null differ diff --git a/.docker/pretix/etc/pretix.cfg b/.docker/pretix/etc/pretix.cfg index 6d4d10839..1cb248518 100644 --- a/.docker/pretix/etc/pretix.cfg +++ b/.docker/pretix/etc/pretix.cfg @@ -1,8 +1,18 @@ +# https://docs.pretix.eu/en/latest/admin/installation/docker_smallscale.html#config-file [pretix] -instance_name=http://pretix.hoeringsportal.local.itkdev.dk +instance_name=pretix.hoeringsportal.local.itkdev.dk url=http://pretix.hoeringsportal.local.itkdev.dk currency=DKK datadir=/data +trust_x_forwarded_for=on +trust_x_forwarded_proto=on + +[database] +backend=postgresql +name=pretix +user=pretix +password=pretix +host=pretix_database [mail] from=admin@pretix.docker.localhost @@ -15,14 +25,6 @@ tls=False [django] debug=off -[database] -# backend=postgresql_psycopg2 -backend=mysql -name=pretix -user=pretix -password=pretix -host=pretix_database - [redis] location=redis://pretix_redis/0 sessions=true diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index f25218418..44dcf9856 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -355,3 +355,33 @@ jobs: - name: Update site run: | docker compose exec --user root phpfpm vendor/bin/drush deploy --yes + + check-debug-patches: + name: Check that debug patches can be applied and reversed. + runs-on: ubuntu-latest + # https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow + strategy: + matrix: + patch: + # Cf. documentation/openIdConnect.md + - patches/openid_connect-debug-userinfo.patch + + steps: + - uses: actions/checkout@v4 + + - name: Start docker compose setup and install composer packages + run: | + docker network create frontend + docker compose pull + docker compose up --detach + + # Important: Use --no-interaction to make https://getcomposer.org/doc/06-config.md#discard-changes have effect. + docker compose exec --user root phpfpm composer install --no-interaction + + - name: Apply patch + run: | + docker compose exec --user root phpfpm patch --strip=1 --verbose --input=${{ matrix.patch }} + + - name: Reverse patch + run: | + docker compose exec --user root phpfpm patch --strip=1 --verbose --input=${{ matrix.patch }} --reverse diff --git a/CHANGELOG.md b/CHANGELOG.md index f1f6ab50f..b55fd0f10 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +* [PR-427](https://github.com/itk-dev/hoeringsportal/pull/427) + Updated docker compose setup. Updated composer packages. * [PR-425](https://github.com/itk-dev/hoeringsportal/pull/425) Publication dates * [PR-424](https://github.com/itk-dev/hoeringsportal/pull/424) diff --git a/README.md b/README.md index 6e1e7c20c..58f1520bd 100755 --- a/README.md +++ b/README.md @@ -14,12 +14,12 @@ ## Database dumps The `docker compose` setup contains a couple of database dumps, one for Drupal -and one for pretix, to make it easy to get started. When adding new -functionality to Drupal, you may need to upgrade the database dump. +and one for pretix (see [Pretix setup](documentation/pretix.md) for details), to +make it easy to get started. When upgrading or adding new functionality to +Drupal, you may need to upgrade the database dump: ```sh -# Dump the database -docker compose exec phpfpm vendor/bin/drush sql:dump --extra-dump='--skip-column-statistics' --structure-tables-list="cache,cache_*,advancedqueue,history,search_*,sessions,watchdog" --gzip --result-file=/app/.docker/drupal/dumps/drupal.sql +task database-dump ``` ## Setting up cron diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 000000000..33470ba34 --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,131 @@ +version: '3' + +# https://taskfile.dev/usage/#env-files +dotenv: ['.env.local', '.env'] + +vars: + # https://taskfile.dev/reference/templating/ + BASE_URL: '{{.TASK_BASE_URL | default .COMPOSE_SERVER_DOMAIN | default .COMPOSE_DOMAIN | default "https://hoeringsportal.local.itkdev.dk"}}' + DOCKER_COMPOSE: '{{.TASK_DOCKER_COMPOSE | default "docker compose"}}' + COMPOSER_INSTALL_ARGUMENTS: '{{.TASK_COMPOSER_INSTALL_ARGUMENTS | default ""}}' + + PRETIX_URL: '{{.TASK_PRETIX_URL | default "http://pretix.hoeringsportal.local.itkdev.dk"}}' + PRETIX_ORGANIZER: '{{.TASK_PRETIX_ORGANIZER | default "dpl-cms"}}' + +tasks: + default: + cmds: + - task --list-all + silent: true + + site-install: + prompt: "This will reset your setup. Continue?" + cmds: + - task compose -- down + - task compose -- pull + - task compose-up + - task composer-install + - task drush -- --yes site:install --existing-config + - task site-open + - task site-open-admin + silent: true + + site-update: + cmds: + - task compose -- pull + - task compose-up + - task composer-install + - task drush -- deploy + silent: true + + site-url: + cmds: + - task drush -- browse --no-browser + silent: true + + site-open: + cmds: + - if command -v open 2>&1 >/dev/null; then open "$(task site-url)"; else echo "$(task site-url)"; fi + silent: true + + site-open-admin: + cmds: + - if command -v open 2>&1 >/dev/null; then open "{{.URL}}"; else echo "{{.URL}}"; fi + vars: + URL: + sh: task drush -- user:login --no-browser + silent: true + + compose: + cmds: + - '{{.DOCKER_COMPOSE}} --profile pretix {{.CLI_ARGS}}' + + compose-up: + cmds: + - task compose -- up --detach --remove-orphans + silent: true + + composer: + cmds: + - task compose -- exec phpfpm composer {{.CLI_ARGS}} + + composer-install: + cmds: + - task composer -- install {{.COMPOSER_INSTALL_ARGUMENTS}} {{.CLI_ARGS}} + silent: true + + drush: + cmds: + # Check if we have content on stdin (cf. + # https://unix.stackexchange.com/questions/762992/bash-check-if-the-standard-input-contains-anything) + - >- + if [[ ! -t 0 ]]; then + task compose -- exec --no-TTY phpfpm vendor/bin/drush --uri={{.BASE_URL}} {{.CLI_ARGS}}; + else + task compose -- exec phpfpm vendor/bin/drush --uri={{.BASE_URL}} {{.CLI_ARGS}}; + fi + silent: true + + database-dump: + cmds: + # Make sure that site is up to date + - task site-update + - task drush -- sql:dump --extra-dump='--skip-column-statistics' --structure-tables-list="cache,cache_*,advancedqueue,history,search_*,sessions,watchdog" --gzip --result-file=/app/.docker/drupal/dumps/drupal.sql + + pretix: + cmds: + - task compose -- exec pretix pretix {{.CLI_ARGS}} + silent: true + + pretix:database-dump: + cmds: + - task compose -- exec --env PGPASSWORD=pretix pretix_database pg_dump --user=pretix pretix > .docker/pretix/dumps/pretix.sql + + pretix:database-cli: + cmds: + - task compose -- exec --env PGPASSWORD=pretix pretix_database psql --user=pretix pretix + + pretix:database-reset: + prompt: "This will reset your pretix database. Continue?" + cmds: + # Remove the pretix database container + - task compose -- rm pretix_database --stop --force + # Starting the container will load dump from .docker/pretix/dumps (cf. docker-compose.pretix.yml). + - task compose -- up --detach + # https://docs.pretix.eu/en/latest/admin/installation/docker_smallscale.html#updates + - task compose -- exec pretix pretix upgrade + + pretix:database-load: + prompt: "This will reset your pretix database. Continue?" + cmds: + - task compose -- exec --no-TTY --env PGPASSWORD=pretix pretix_database psql --quiet --user=pretix pretix <<< "DROP SCHEMA public CASCADE; CREATE SCHEMA public;" + - task compose -- exec --no-TTY --env PGPASSWORD=pretix pretix_database psql --quiet --user=pretix pretix < .docker/pretix/dumps/pretix.sql + # https://docs.pretix.eu/en/latest/admin/installation/docker_smallscale.html#updates + - task pretix -- upgrade + + pretix:api-ping: + vars: + API_TOKEN: + sh: task compose -- exec --no-TTY --env PGPASSWORD=pretix pretix_database psql --user=pretix pretix --tuples-only --csv <<< "SELECT token FROM pretixbase_teamapitoken WHERE name = 'hoeringsportal'" + cmds: + - "task compose -- exec phpfpm curl --header 'Authorization: Token {{.API_TOKEN}}' {{.PRETIX_URL}}/api/v1/organizers/" diff --git a/composer.json b/composer.json index 171b852aa..8826a7f5e 100755 --- a/composer.json +++ b/composer.json @@ -64,7 +64,7 @@ "drupal/viewsreference": "^2.0@beta", "drupal/webform": "^6.2@beta", "drupal/xls_serialization": "^1.2", - "drush/drush": "^12", + "drush/drush": "^13", "itk-dev/composer-virtualenv": "^1.0", "itk-dev/itk_azure_video": "^2.0", "itk-dev/itk_pretix": "^1.0", @@ -77,7 +77,7 @@ "webflo/drupal-finder": "^1.0.0" }, "require-dev": { - "drupal/content_fixtures": "^3.1", + "drupal/content_fixtures": "dev-3498162-not-compatible-with", "drupal/core-dev": "^10.0", "drupal/masquerade": "^2.0", "ergebnis/composer-normalize": "^2.44", @@ -90,6 +90,11 @@ "drupal/drupal": "*" }, "repositories": { + "drupal/content_fixtures": { + "type": "git", + "url": "https://git.drupalcode.org/issue/content_fixtures-3498162", + "//": "Content fixtures: Not compatible with Drush 13+ (https://www.drupal.org/project/content_fixtures/issues/3498162)" + }, "drupal": { "type": "composer", "url": "https://packages.drupal.org/8" @@ -280,7 +285,7 @@ "twig-cs-fixer lint web/themes/custom/hoeringsportal/templates" ], "install-codestandards": [ - "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run" + "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run" ] } } diff --git a/composer.lock b/composer.lock index cf4a2ab03..9251a5926 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "53ef5f913aab1840d495cba18dc1c178", + "content-hash": "264d56d2cf3045f7f2577eb3679f6e8b", "packages": [ { "name": "asm89/stack-cors", @@ -473,16 +473,16 @@ }, { "name": "consolidation/annotated-command", - "version": "4.10.0", + "version": "4.10.1", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c" + "reference": "362310b13ececa9f6f0a4a880811fa08fecc348b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/1e830ba908c9ffb1ba7ca056203531b27188812c", - "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/362310b13ececa9f6f0a4a880811fa08fecc348b", + "reference": "362310b13ececa9f6f0a4a880811fa08fecc348b", "shasum": "" }, "require": { @@ -523,9 +523,9 @@ "description": "Initialize Symfony Console commands from annotated command class methods.", "support": { "issues": "https://github.com/consolidation/annotated-command/issues", - "source": "https://github.com/consolidation/annotated-command/tree/4.10.0" + "source": "https://github.com/consolidation/annotated-command/tree/4.10.1" }, - "time": "2024-04-05T21:05:39+00:00" + "time": "2024-12-13T19:55:40+00:00" }, { "name": "consolidation/config", @@ -873,16 +873,16 @@ }, { "name": "consolidation/site-alias", - "version": "4.1.0", + "version": "4.1.1", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf" + "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", - "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/aff6189aae17da813d23249cb2fc0fff33f26d40", + "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40", "shasum": "" }, "require": { @@ -926,22 +926,22 @@ "description": "Manage alias records for local and remote sites.", "support": { "issues": "https://github.com/consolidation/site-alias/issues", - "source": "https://github.com/consolidation/site-alias/tree/4.1.0" + "source": "https://github.com/consolidation/site-alias/tree/4.1.1" }, - "time": "2024-04-05T15:58:04+00:00" + "time": "2024-12-13T19:05:11+00:00" }, { "name": "consolidation/site-process", - "version": "5.4.0", + "version": "5.4.2", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a" + "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", - "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", + "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", "shasum": "" }, "require": { @@ -983,9 +983,9 @@ "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", "support": { "issues": "https://github.com/consolidation/site-process/issues", - "source": "https://github.com/consolidation/site-process/tree/5.4.0" + "source": "https://github.com/consolidation/site-process/tree/5.4.2" }, - "time": "2024-04-06T00:00:28+00:00" + "time": "2024-12-13T19:25:56+00:00" }, { "name": "cure53/dompurify", @@ -1283,29 +1283,27 @@ }, { "name": "doctrine/deprecations", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" + "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9", + "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^9", - "phpstan/phpstan": "1.4.10 || 1.10.15", - "phpstan/phpstan-phpunit": "^1.0", + "doctrine/coding-standard": "^9 || ^12", + "phpstan/phpstan": "1.4.10 || 2.0.3", + "phpstan/phpstan-phpunit": "^1.0 || ^2", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "psalm/plugin-phpunit": "0.18.4", - "psr/log": "^1 || ^2 || ^3", - "vimeo/psalm": "4.30.0 || 5.12.0" + "psr/log": "^1 || ^2 || ^3" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -1313,7 +1311,7 @@ "type": "library", "autoload": { "psr-4": { - "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + "Doctrine\\Deprecations\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1324,9 +1322,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.3" + "source": "https://github.com/doctrine/deprecations/tree/1.1.4" }, - "time": "2024-01-30T19:34:25+00:00" + "time": "2024-12-07T21:18:45+00:00" }, { "name": "doctrine/instantiator", @@ -1762,26 +1760,26 @@ }, { "name": "drupal/better_social_sharing_buttons", - "version": "4.0.7", + "version": "4.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/better_social_sharing_buttons.git", - "reference": "4.0.7" + "reference": "4.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/better_social_sharing_buttons-4.0.7.zip", - "reference": "4.0.7", - "shasum": "45f63c1b4124c8ba9e765e8d3dc6a894b2b25b6a" + "url": "https://ftp.drupal.org/files/projects/better_social_sharing_buttons-4.1.0.zip", + "reference": "4.1.0", + "shasum": "2c76a58208213ed0a259b334182ca4c5c0729058" }, "require": { - "drupal/core": "^9.3 || ^10" + "drupal/core": "^9.3 || ^10 || ^11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.7", - "datestamp": "1694802520", + "version": "4.1.0", + "datestamp": "1733860882", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1797,6 +1795,10 @@ "name": "flyke", "homepage": "https://www.drupal.org/user/2750085" }, + { + "name": "mandclu", + "homepage": "https://www.drupal.org/user/52136" + }, { "name": "shelane", "homepage": "https://www.drupal.org/user/2674989" @@ -1810,26 +1812,26 @@ }, { "name": "drupal/block_content_suggestions", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_content_suggestions.git", - "reference": "1.0.0" + "reference": "1.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_content_suggestions-1.0.0.zip", - "reference": "1.0.0", - "shasum": "e6575f49007c732c5775708f59f9cb7d59b440b5" + "url": "https://ftp.drupal.org/files/projects/block_content_suggestions-1.1.0.zip", + "reference": "1.1.0", + "shasum": "623abef9a494e82a34cebc7667d7c63ebedd24e9" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^10.3 || ^11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.0.0", - "datestamp": "1672135944", + "version": "1.1.0", + "datestamp": "1735226502", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1854,17 +1856,17 @@ }, { "name": "drupal/captcha", - "version": "2.0.6", + "version": "2.0.7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/captcha.git", - "reference": "2.0.6" + "reference": "2.0.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/captcha-2.0.6.zip", - "reference": "2.0.6", - "shasum": "3553127b2779ce5c24ac5c7fb682b5089d681bb2" + "url": "https://ftp.drupal.org/files/projects/captcha-2.0.7.zip", + "reference": "2.0.7", + "shasum": "8e97ba41810811bcd5d7e8b714cdc0b664dd8eec" }, "require": { "drupal/core": "^9.5 || ^10 || ^11" @@ -1872,8 +1874,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.6", - "datestamp": "1719900315", + "version": "2.0.7", + "datestamp": "1732250192", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1889,7 +1891,7 @@ ], "authors": [ { - "name": "Anybody", + "name": "anybody", "homepage": "https://www.drupal.org/user/291091" }, { @@ -1897,7 +1899,7 @@ "homepage": "https://www.drupal.org/user/1021502" }, { - "name": "Grevil", + "name": "grevil", "homepage": "https://www.drupal.org/user/3668491" }, { @@ -1913,7 +1915,7 @@ "homepage": "https://www.drupal.org/user/116002" }, { - "name": "RobLoach", + "name": "robloach", "homepage": "https://www.drupal.org/user/61114" }, { @@ -1984,6 +1986,10 @@ { "name": "mcdruid", "homepage": "https://www.drupal.org/user/255969" + }, + { + "name": "vladimiraus", + "homepage": "https://www.drupal.org/user/673120" } ], "description": "Integration with the ClamAV anti-virus scanner.", @@ -2190,16 +2196,16 @@ }, { "name": "drupal/core", - "version": "10.3.8", + "version": "10.4.1", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "4006024a8dd7c9976fad0a2af7c9034d120c8e44" + "reference": "0aeb6303b33d813a68ea78c40466715d9fcfac46" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/4006024a8dd7c9976fad0a2af7c9034d120c8e44", - "reference": "4006024a8dd7c9976fad0a2af7c9034d120c8e44", + "url": "https://api.github.com/repos/drupal/core/zipball/0aeb6303b33d813a68ea78c40466715d9fcfac46", + "reference": "0aeb6303b33d813a68ea78c40466715d9fcfac46", "shasum": "" }, "require": { @@ -2245,7 +2251,7 @@ "symfony/serializer": "^6.4", "symfony/validator": "^6.4", "symfony/yaml": "^6.4", - "twig/twig": "^3.14.2" + "twig/twig": "^3.15.0" }, "conflict": { "drush/drush": "<12.4.3" @@ -2283,29 +2289,29 @@ "extra": { "drupal-scaffold": { "file-mapping": { - "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", - "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", - "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", - "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", - "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", - "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", "[web-root]/.htaccess": "assets/scaffold/files/htaccess", - "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", - "[web-root]/index.php": "assets/scaffold/files/index.php", - "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", + "[web-root]/index.php": "assets/scaffold/files/index.php", + "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", "[web-root]/update.php": "assets/scaffold/files/update.php", "[web-root]/web.config": "assets/scaffold/files/web.config", + "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", + "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", + "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", + "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", + "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", + "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", + "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt", + "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", + "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", + "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", + "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml", "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php", - "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml", - "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php", - "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", - "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", - "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt" + "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php" } } }, @@ -2348,22 +2354,22 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/10.3.8" + "source": "https://github.com/drupal/core/tree/10.4.1" }, - "time": "2024-11-12T09:52:10+00:00" + "time": "2025-01-06T23:26:38+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "10.3.8", + "version": "10.4.1", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc" + "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/f58ab5c0d02d275c5aa226c4505b457e41b161cc", - "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55", + "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55", "shasum": "" }, "require": { @@ -2398,13 +2404,13 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/10.3.8" + "source": "https://github.com/drupal/core-composer-scaffold/tree/10.4.1" }, - "time": "2024-08-22T14:31:34+00:00" + "time": "2024-08-22T14:31:30+00:00" }, { "name": "drupal/core-project-message", - "version": "10.3.8", + "version": "10.4.1", "source": { "type": "git", "url": "https://github.com/drupal/core-project-message.git", @@ -2439,80 +2445,80 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-project-message/tree/11.0.6" + "source": "https://github.com/drupal/core-project-message/tree/11.1.1" }, "time": "2023-07-24T07:55:25+00:00" }, { "name": "drupal/core-recommended", - "version": "10.3.8", + "version": "10.4.1", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "d43bb57a01bfdd624c423ec4ba3e1c45b90be1fa" + "reference": "7ad1354941c10f794fa9c46cad78199f3ea88206" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/d43bb57a01bfdd624c423ec4ba3e1c45b90be1fa", - "reference": "d43bb57a01bfdd624c423ec4ba3e1c45b90be1fa", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/7ad1354941c10f794fa9c46cad78199f3ea88206", + "reference": "7ad1354941c10f794fa9c46cad78199f3ea88206", "shasum": "" }, "require": { "asm89/stack-cors": "~v2.2.0", - "composer/semver": "~3.4.0", - "doctrine/annotations": "~1.14.3", + "composer/semver": "~3.4.3", + "doctrine/annotations": "~1.14.4", "doctrine/deprecations": "~1.1.3", "doctrine/lexer": "~2.1.1", - "drupal/core": "10.3.8", + "drupal/core": "10.4.1", "egulias/email-validator": "~4.0.2", - "guzzlehttp/guzzle": "~7.8.1", - "guzzlehttp/promises": "~2.0.2", - "guzzlehttp/psr7": "~2.6.2", + "guzzlehttp/guzzle": "~7.9.2", + "guzzlehttp/promises": "~2.0.4", + "guzzlehttp/psr7": "~2.7.0", "masterminds/html5": "~2.9.0", - "mck89/peast": "~v1.16.2", + "mck89/peast": "~v1.16.3", "pear/archive_tar": "~1.5.0", "pear/console_getopt": "~v1.4.3", - "pear/pear-core-minimal": "~v1.10.15", + "pear/pear-core-minimal": "~v1.10.16", "pear/pear_exception": "~v1.0.2", "psr/cache": "~3.0.0", "psr/container": "~2.0.2", "psr/event-dispatcher": "~1.0.0", "psr/http-client": "~1.0.3", "psr/http-factory": "~1.1.0", - "psr/log": "~3.0.0", + "psr/log": "~3.0.2", "ralouphie/getallheaders": "~3.0.3", "sebastian/diff": "~4.0.6", - "symfony/console": "~v6.4.8", - "symfony/dependency-injection": "~v6.4.7", - "symfony/deprecation-contracts": "~v3.5.0", - "symfony/error-handler": "~v6.4.7", - "symfony/event-dispatcher": "~v6.4.7", - "symfony/event-dispatcher-contracts": "~v3.5.0", - "symfony/filesystem": "~v6.4.8", - "symfony/finder": "~v6.4.8", - "symfony/http-foundation": "~v6.4.7", - "symfony/http-kernel": "~v6.4.7", - "symfony/mailer": "~v6.4.7", - "symfony/mime": "~v6.4.7", - "symfony/polyfill-ctype": "~v1.29.0", - "symfony/polyfill-iconv": "~v1.29.0", - "symfony/polyfill-intl-grapheme": "~v1.29.0", - "symfony/polyfill-intl-idn": "~v1.29.0", - "symfony/polyfill-intl-normalizer": "~v1.29.0", - "symfony/polyfill-mbstring": "~v1.29.0", - "symfony/polyfill-php83": "~v1.29.0", - "symfony/process": "~v6.4.8", - "symfony/psr-http-message-bridge": "~v6.4.7", - "symfony/routing": "~v6.4.7", - "symfony/serializer": "~v6.4.7", - "symfony/service-contracts": "~v3.5.0", - "symfony/string": "~v6.4.8", - "symfony/translation-contracts": "~v3.5.0", - "symfony/validator": "~v6.4.7", - "symfony/var-dumper": "~v6.4.7", - "symfony/var-exporter": "~v6.4.7", - "symfony/yaml": "~v6.4.7", - "twig/twig": "~v3.14.2" + "symfony/console": "~v6.4.15", + "symfony/dependency-injection": "~v6.4.16", + "symfony/deprecation-contracts": "~v3.5.1", + "symfony/error-handler": "~v6.4.14", + "symfony/event-dispatcher": "~v6.4.13", + "symfony/event-dispatcher-contracts": "~v3.5.1", + "symfony/filesystem": "~v6.4.13", + "symfony/finder": "~v6.4.13", + "symfony/http-foundation": "~v6.4.16", + "symfony/http-kernel": "~v6.4.16", + "symfony/mailer": "~v6.4.13", + "symfony/mime": "~v6.4.13", + "symfony/polyfill-ctype": "~v1.31.0", + "symfony/polyfill-iconv": "~v1.31.0", + "symfony/polyfill-intl-grapheme": "~v1.31.0", + "symfony/polyfill-intl-idn": "~v1.31.0", + "symfony/polyfill-intl-normalizer": "~v1.31.0", + "symfony/polyfill-mbstring": "~v1.31.0", + "symfony/polyfill-php83": "~v1.31.0", + "symfony/process": "~v6.4.15", + "symfony/psr-http-message-bridge": "~v6.4.13", + "symfony/routing": "~v6.4.16", + "symfony/serializer": "~v6.4.15", + "symfony/service-contracts": "~v3.5.1", + "symfony/string": "~v6.4.15", + "symfony/translation-contracts": "~v3.5.1", + "symfony/validator": "~v6.4.16", + "symfony/var-dumper": "~v6.4.15", + "symfony/var-exporter": "~v6.4.13", + "symfony/yaml": "~v6.4.13", + "twig/twig": "~v3.16.0" }, "conflict": { "webflo/drupal-core-strict": "*" @@ -2524,9 +2530,9 @@ ], "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/10.3.8" + "source": "https://github.com/drupal/core-recommended/tree/10.4.1" }, - "time": "2024-11-12T09:52:10+00:00" + "time": "2025-01-06T23:26:38+00:00" }, { "name": "drupal/crop", @@ -2741,17 +2747,17 @@ }, { "name": "drupal/ds", - "version": "3.24.0", + "version": "3.25.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.24" + "reference": "8.x-3.25" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.24.zip", - "reference": "8.x-3.24", - "shasum": "5b575bc231cd627a33f201daaa6b1a3a70d28e84" + "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.25.zip", + "reference": "8.x-3.25", + "shasum": "b1e01d1772029a9e3ec89c523958be9ce3949aad" }, "require": { "drupal/core": "^10.2 || ^11" @@ -2763,8 +2769,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.24", - "datestamp": "1726653898", + "version": "8.x-3.25", + "datestamp": "1735308265", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3195,7 +3201,7 @@ ], "authors": [ { - "name": "Berdir", + "name": "berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -3219,17 +3225,17 @@ }, { "name": "drupal/entityqueue", - "version": "1.8.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entityqueue.git", - "reference": "8.x-1.8" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entityqueue-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "394dc532a915345ac0c0393b62dd160e35f2cd92" + "url": "https://ftp.drupal.org/files/projects/entityqueue-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "96c62b4e8398e0bd82199c938da986b43e015666" }, "require": { "drupal/core": "^9 || ^10 || ^11" @@ -3237,8 +3243,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1717148266", + "version": "8.x-1.9", + "datestamp": "1733392707", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3271,17 +3277,17 @@ }, { "name": "drupal/externalauth", - "version": "2.0.6", + "version": "2.0.7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/externalauth.git", - "reference": "2.0.6" + "reference": "2.0.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/externalauth-2.0.6.zip", - "reference": "2.0.6", - "shasum": "0dbc9fbab0901e940d52b239e08f031797f6bd2a" + "url": "https://ftp.drupal.org/files/projects/externalauth-2.0.7.zip", + "reference": "2.0.7", + "shasum": "93c2b15f21172f931bb81cc365c828c12be377c3" }, "require": { "drupal/core": "^9.5 || ^10 || ^11" @@ -3289,8 +3295,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.6", - "datestamp": "1720689758", + "version": "2.0.7", + "datestamp": "1735897906", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3481,22 +3487,15 @@ "dist": { "type": "path", "url": "web/modules/custom/hoeringsportal_citizen_proposal", - "reference": "4aa8ab005f8f94015fd341e04057479f259886e8" + "reference": "63dc55b052c157a41c9458a22e9ccc723c7da9dd" }, "require": { "drupal/entity_events": "^2.0", "drupal/symfony_mailer": "^1.3", - "drush/drush": "^12", + "drush/drush": "^13", "itk-dev/serviceplatformen": "^1.5" }, "type": "drupal-custom-module", - "extra": { - "drush": { - "services": { - "drush.services.yml": "^12" - } - } - }, "license": [ "GPL-2.0+" ], @@ -3515,24 +3514,17 @@ "dist": { "type": "path", "url": "web/modules/custom/hoeringsportal_citizen_proposal_archiving", - "reference": "1d34114125c454d839270721f22de770364fcb72" + "reference": "24f6f65e2da93cb72f2bfb3aa70646f1176023dc" }, "require": { "dompdf/dompdf": "^2.0", "drupal/entity_events": "^2.0", "drupal/pluginformalter": "^1.5", - "drush/drush": "^12", + "drush/drush": "^13", "itk-dev/getorganized-api-client-php": "^1.2", "symfony/options-resolver": "^5.0" }, "type": "drupal-custom-module", - "extra": { - "drush": { - "services": { - "drush.services.yml": "^12" - } - } - }, "license": [ "GPL-2.0+" ], @@ -3671,6 +3663,10 @@ "homepage": "https://github.com/woprrr", "role": "Maintainer" }, + { + "name": "Drupal media CI", + "homepage": "https://www.drupal.org/user/3057985" + }, { "name": "Drupal Media Team", "homepage": "https://www.drupal.org/user/3260690" @@ -4151,7 +4147,7 @@ ], "authors": [ { - "name": "Bladedu", + "name": "bladedu", "homepage": "https://www.drupal.org/user/436000" }, { @@ -4252,29 +4248,29 @@ }, { "name": "drupal/openid_connect", - "version": "3.0.0-alpha3", + "version": "3.0.0-alpha5", "source": { "type": "git", "url": "https://git.drupalcode.org/project/openid_connect.git", - "reference": "3.0.0-alpha3" + "reference": "3.0.0-alpha5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/openid_connect-3.0.0-alpha3.zip", - "reference": "3.0.0-alpha3", - "shasum": "002616dc2bfeb6b23204297e77d1f7a5369e69b3" + "url": "https://ftp.drupal.org/files/projects/openid_connect-3.0.0-alpha5.zip", + "reference": "3.0.0-alpha5", + "shasum": "6bca4f7ac0f675370008a0631095722347379b04" }, "require": { - "drupal/core": "^9.3 || ^10", + "drupal/core": "^9.5 || ^10.2 || ^11", "drupal/externalauth": "^2.0", "ext-json": "*", - "php": ">=7.1.0" + "php": ">=8.1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-alpha3", - "datestamp": "1710708951", + "version": "3.0.0-alpha5", + "datestamp": "1735590945", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4294,6 +4290,10 @@ "name": "jcnventura", "homepage": "https://www.drupal.org/user/122464" }, + { + "name": "mstrelan", + "homepage": "https://www.drupal.org/user/314289" + }, { "name": "pfrilling", "homepage": "https://www.drupal.org/user/169695" @@ -4571,7 +4571,11 @@ "homepage": "https://www.drupal.org/user/99012" }, { - "name": "Sheldon Rampton", + "name": "mably", + "homepage": "https://www.drupal.org/user/3375160" + }, + { + "name": "sheldon rampton", "homepage": "https://www.drupal.org/user/13085" }, { @@ -4724,7 +4728,7 @@ ], "authors": [ { - "name": "Berdir", + "name": "berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -4732,7 +4736,7 @@ "homepage": "https://www.drupal.org/user/53892" }, { - "name": "Kristen Pol", + "name": "kristen pol", "homepage": "https://www.drupal.org/user/8389" }, { @@ -4780,7 +4784,7 @@ ], "authors": [ { - "name": "Dom.", + "name": "dom.", "homepage": "https://www.drupal.org/user/801982" } ], @@ -5079,7 +5083,7 @@ ], "authors": [ { - "name": "Chi", + "name": "chi", "homepage": "https://www.drupal.org/user/556138" } ], @@ -5153,22 +5157,25 @@ }, { "name": "drupal/views_data_export", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/views_data_export.git", - "reference": "8.x-1.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_data_export-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "70dede9fdf50601232f068e67309d361341e88c5" + "url": "https://ftp.drupal.org/files/projects/views_data_export-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "2664bd52dd47b068dec60eecd3c6fc73f2d6c1b8" }, "require": { - "drupal/core": "^9 || ^10", + "drupal/core": "^9 || ^10 || ^11", "drupal/csv_serialization": "~1.4 || ~2.0 || ~3 || ~4" }, + "conflict": { + "phpoffice/phpspreadsheet": "<1.23.0" + }, "require-dev": { "drupal/search_api": "~1.12", "drupal/xls_serialization": "~1.0" @@ -5176,8 +5183,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1698948991", + "version": "8.x-1.5", + "datestamp": "1732280381", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5186,7 +5193,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -5288,20 +5295,20 @@ }, { "name": "drupal/webform", - "version": "6.2.7", + "version": "6.2.9", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "6.2.7" + "reference": "6.2.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-6.2.7.zip", - "reference": "6.2.7", - "shasum": "7e0520773f2521d70837371b08e09a13704b4274" + "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip", + "reference": "6.2.9", + "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600" }, "require": { - "drupal/core": "^10.1", + "drupal/core": "^10.2", "php": ">=8.1" }, "require-dev": { @@ -5348,8 +5355,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.2.7", - "datestamp": "1721425228", + "version": "6.2.9", + "datestamp": "1733851063", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5400,27 +5407,27 @@ }, { "name": "drupal/xls_serialization", - "version": "1.5.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/xls_serialization.git", - "reference": "8.x-1.5" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/xls_serialization-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "0c2f6f75affbc9fca999bda4231523b2bfaff26e" + "url": "https://ftp.drupal.org/files/projects/xls_serialization-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "6fe60aa651651913886e6c54848ed672301faeab" }, "require": { - "drupal/core": "^9 || ^10", + "drupal/core": "^9 || ^10 || ^11", "phpoffice/phpspreadsheet": "^2.2.1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1729715617", + "version": "8.x-1.6", + "datestamp": "1731600732", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5453,58 +5460,62 @@ }, { "name": "drush/drush", - "version": "12.5.3", + "version": "13.3.3", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6" + "reference": "d124723dacb4208ccb875b7114722e420fccf06d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6", - "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/d124723dacb4208ccb875b7114722e420fccf06d", + "reference": "d124723dacb4208ccb875b7114722e420fccf06d", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^3.0", + "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha", "composer-runtime-api": "^2.2", "composer/semver": "^1.4 || ^3", "consolidation/annotated-command": "^4.9.2", - "consolidation/config": "^2.1.2", + "consolidation/config": "^2.1.2 || ^3", "consolidation/filter-via-dot-access-data": "^2.0.2", "consolidation/output-formatters": "^4.3.2", - "consolidation/robo": "^4.0.6", + "consolidation/robo": "^4.0.6 || ^5", "consolidation/site-alias": "^4", "consolidation/site-process": "^5.2.0", + "dflydev/dot-access-data": "^3.0.2", "ext-dom": "*", "grasmash/yaml-cli": "^3.1", "guzzlehttp/guzzle": "^7.0", - "league/container": "^4", - "php": ">=8.1", - "psy/psysh": "~0.11", - "symfony/event-dispatcher": "^6", - "symfony/filesystem": "^6.1", - "symfony/finder": "^6", - "symfony/var-dumper": "^6.0", - "symfony/yaml": "^6.0", - "webflo/drupal-finder": "^1.2" + "laravel/prompts": "^0.1.21", + "league/container": "^4.2", + "php": ">=8.2", + "psy/psysh": "~0.12", + "symfony/event-dispatcher": "^6 || ^7", + "symfony/filesystem": "^6.1 || ^7", + "symfony/finder": "^6 || ^7", + "symfony/var-dumper": "^6.0 || ^7", + "symfony/yaml": "^6.0 || ^7" }, "conflict": { - "drupal/core": "< 10.0", + "drupal/core": "< 10.2", "drupal/migrate_run": "*", "drupal/migrate_tools": "<= 5" }, "require-dev": { "composer/installers": "^2", - "cweagans/composer-patches": "~1.0", - "drupal/core-recommended": "^10", + "cweagans/composer-patches": "~1.7.3", + "drupal/core-recommended": "^10.2.5 || 11.0.x-dev", "drupal/semver_example": "2.3.0", - "phpunit/phpunit": "^9", - "rector/rector": "^0.12", + "jetbrains/phpstorm-attributes": "^1.0", + "mglaman/phpstan-drupal": "^1.2", + "phpunit/phpunit": "^9 || ^10", + "rector/rector": "^1", "squizlabs/php_codesniffer": "^3.7" }, "bin": [ - "drush" + "drush", + "drush.php" ], "type": "library", "extra": { @@ -5515,23 +5526,23 @@ "sut/libraries/{$name}": [ "type:drupal-library" ], + "sut/themes/unish/{$name}": [ + "drupal/empty_theme" + ], + "sut/drush/contrib/{$name}": [ + "type:drupal-drush" + ], "sut/modules/unish/{$name}": [ "drupal/devel" ], - "sut/themes/unish/{$name}": [ - "drupal/empty_theme" + "sut/themes/contrib/{$name}": [ + "type:drupal-theme" ], "sut/modules/contrib/{$name}": [ "type:drupal-module" ], "sut/profiles/contrib/{$name}": [ "type:drupal-profile" - ], - "sut/themes/contrib/{$name}": [ - "type:drupal-theme" - ], - "sut/drush/contrib/{$name}": [ - "type:drupal-drush" ] } }, @@ -5585,7 +5596,7 @@ "issues": "https://github.com/drush-ops/drush/issues", "security": "https://github.com/drush-ops/drush/security/advisories", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/12.5.3" + "source": "https://github.com/drush-ops/drush/tree/13.3.3" }, "funding": [ { @@ -5593,20 +5604,20 @@ "type": "github" } ], - "time": "2024-08-02T11:57:29+00:00" + "time": "2024-11-10T20:02:03+00:00" }, { "name": "egulias/email-validator", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" + "reference": "b115554301161fa21467629f1e1391c1936de517" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", - "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517", + "reference": "b115554301161fa21467629f1e1391c1936de517", "shasum": "" }, "require": { @@ -5652,7 +5663,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" + "source": "https://github.com/egulias/EmailValidator/tree/4.0.3" }, "funding": [ { @@ -5660,20 +5671,20 @@ "type": "github" } ], - "time": "2023-10-06T06:47:41+00:00" + "time": "2024-12-27T00:36:43+00:00" }, { "name": "firebase/php-jwt", - "version": "v6.10.1", + "version": "v6.10.2", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "500501c2ce893c824c801da135d02661199f60c5" + "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5", - "reference": "500501c2ce893c824c801da135d02661199f60c5", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/30c19ed0f3264cb660ea496895cfb6ef7ee3653b", + "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b", "shasum": "" }, "require": { @@ -5721,9 +5732,9 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v6.10.1" + "source": "https://github.com/firebase/php-jwt/tree/v6.10.2" }, - "time": "2024-05-18T18:05:11+00:00" + "time": "2024-11-24T11:22:49+00:00" }, { "name": "goetas-webservices/xsd2php-runtime", @@ -5787,16 +5798,16 @@ }, { "name": "grasmash/expander", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/grasmash/expander.git", - "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82" + "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", - "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", + "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4", + "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4", "shasum": "" }, "require": { @@ -5833,9 +5844,9 @@ "description": "Expands internal property references in PHP arrays file.", "support": { "issues": "https://github.com/grasmash/expander/issues", - "source": "https://github.com/grasmash/expander/tree/3.0.0" + "source": "https://github.com/grasmash/expander/tree/3.0.1" }, - "time": "2022-05-10T13:14:49+00:00" + "time": "2024-11-25T23:28:05+00:00" }, { "name": "grasmash/yaml-cli", @@ -5895,22 +5906,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.8.2", + "version": "7.9.2", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2" + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4152d9eb85c445fe1f992001d1748e8bec070d2", - "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/promises": "^1.5.3 || ^2.0.3", - "guzzlehttp/psr7": "^1.9.1 || ^2.6.3", + "guzzlehttp/psr7": "^2.7.0", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -6001,7 +6012,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.8.2" + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" }, "funding": [ { @@ -6017,7 +6028,7 @@ "type": "tidelift" } ], - "time": "2024-07-18T11:12:18+00:00" + "time": "2024-07-24T11:22:20+00:00" }, { "name": "guzzlehttp/promises", @@ -6104,16 +6115,16 @@ }, { "name": "guzzlehttp/psr7", - "version": "2.6.3", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "6de29867b18790c0d2c846af4c13a24cc3ad56f3" + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/6de29867b18790c0d2c846af4c13a24cc3ad56f3", - "reference": "6de29867b18790c0d2c846af4c13a24cc3ad56f3", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", "shasum": "" }, "require": { @@ -6200,7 +6211,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.6.3" + "source": "https://github.com/guzzle/psr7/tree/2.7.0" }, "funding": [ { @@ -6216,7 +6227,7 @@ "type": "tidelift" } ], - "time": "2024-07-18T09:59:12+00:00" + "time": "2024-07-18T11:15:46+00:00" }, { "name": "html2text/html2text", @@ -6314,6 +6325,202 @@ }, "time": "2021-07-21T13:50:14+00:00" }, + { + "name": "illuminate/collections", + "version": "v11.37.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/collections.git", + "reference": "9100b083eeb85d38d78fc1de28f7326596ab2eda" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/collections/zipball/9100b083eeb85d38d78fc1de28f7326596ab2eda", + "reference": "9100b083eeb85d38d78fc1de28f7326596ab2eda", + "shasum": "" + }, + "require": { + "illuminate/conditionable": "^11.0", + "illuminate/contracts": "^11.0", + "illuminate/macroable": "^11.0", + "php": "^8.2" + }, + "suggest": { + "symfony/var-dumper": "Required to use the dump method (^7.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "11.x-dev" + } + }, + "autoload": { + "files": [ + "functions.php", + "helpers.php" + ], + "psr-4": { + "Illuminate\\Support\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Collections package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-12-18T14:14:45+00:00" + }, + { + "name": "illuminate/conditionable", + "version": "v11.37.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/conditionable.git", + "reference": "911df1bda950a3b799cf80671764e34eede131c6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/conditionable/zipball/911df1bda950a3b799cf80671764e34eede131c6", + "reference": "911df1bda950a3b799cf80671764e34eede131c6", + "shasum": "" + }, + "require": { + "php": "^8.0.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "11.x-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Support\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Conditionable package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-11-21T16:28:56+00:00" + }, + { + "name": "illuminate/contracts", + "version": "v11.37.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/contracts.git", + "reference": "184317f701ba20ca265e36808ed54b75b115972d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/184317f701ba20ca265e36808ed54b75b115972d", + "reference": "184317f701ba20ca265e36808ed54b75b115972d", + "shasum": "" + }, + "require": { + "php": "^8.2", + "psr/container": "^1.1.1|^2.0.1", + "psr/simple-cache": "^1.0|^2.0|^3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "11.x-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Contracts\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Contracts package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-11-25T15:33:38+00:00" + }, + { + "name": "illuminate/macroable", + "version": "v11.37.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/macroable.git", + "reference": "e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/macroable/zipball/e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed", + "reference": "e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed", + "shasum": "" + }, + "require": { + "php": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "11.x-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Support\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Macroable package.", + "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-06-28T20:10:30+00:00" + }, { "name": "itk-dev/azure-key-vault-php", "version": "1.0.1", @@ -6441,16 +6648,16 @@ }, { "name": "itk-dev/getorganized-api-client-php", - "version": "1.2.1", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/itk-dev/getorganized-api-client-php.git", - "reference": "416e89a09467fd3f69e696a7cd3d97ab7d10ffd7" + "reference": "d2067dfd842e6bcd3c80c7200d71d497c5711b6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/itk-dev/getorganized-api-client-php/zipball/416e89a09467fd3f69e696a7cd3d97ab7d10ffd7", - "reference": "416e89a09467fd3f69e696a7cd3d97ab7d10ffd7", + "url": "https://api.github.com/repos/itk-dev/getorganized-api-client-php/zipball/d2067dfd842e6bcd3c80c7200d71d497c5711b6a", + "reference": "d2067dfd842e6bcd3c80c7200d71d497c5711b6a", "shasum": "" }, "require": { @@ -6490,9 +6697,9 @@ "description": "PHP client for GetOrganized API", "support": { "issues": "https://github.com/itk-dev/getorganized-api-client-php/issues", - "source": "https://github.com/itk-dev/getorganized-api-client-php/tree/1.2.1" + "source": "https://github.com/itk-dev/getorganized-api-client-php/tree/1.2.2" }, - "time": "2023-12-18T08:25:24+00:00" + "time": "2024-12-19T11:36:43+00:00" }, { "name": "itk-dev/itk_azure_video", @@ -6885,16 +7092,16 @@ }, { "name": "jms/serializer", - "version": "3.31.1", + "version": "3.32.1", "source": { "type": "git", "url": "https://github.com/schmittjoh/serializer.git", - "reference": "362503da26673f210221c25b99c795da718ad9aa" + "reference": "b4285f4197a5b961d365e2c756b144d7af24a7fd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/362503da26673f210221c25b99c795da718ad9aa", - "reference": "362503da26673f210221c25b99c795da718ad9aa", + "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/b4285f4197a5b961d365e2c756b144d7af24a7fd", + "reference": "b4285f4197a5b961d365e2c756b144d7af24a7fd", "shasum": "" }, "require": { @@ -6902,7 +7109,7 @@ "doctrine/lexer": "^2.0 || ^3.0", "jms/metadata": "^2.6", "php": "^7.4 || ^8.0", - "phpstan/phpdoc-parser": "^1.20" + "phpstan/phpdoc-parser": "^1.20 || ^2.0" }, "require-dev": { "doctrine/annotations": "^1.14 || ^2.0", @@ -6914,10 +7121,11 @@ "jackalope/jackalope-doctrine-dbal": "^1.3", "ocramius/proxy-manager": "^1.0 || ^2.0", "phpbench/phpbench": "^1.0", - "phpstan/phpstan": "^1.10.57", + "phpstan/phpstan": "^2.0", "phpunit/phpunit": "^9.0 || ^10.0 || ^11.0", "psr/container": "^1.0 || ^2.0", - "rector/rector": "^1.0.0", + "rector/rector": "^1.0.0 || ^2.0@dev", + "slevomat/coding-standard": "dev-master#f2cc4c553eae68772624ffd7dd99022343b69c31 as 8.11.9999", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/expression-language": "^5.4 || ^6.0 || ^7.0", "symfony/filesystem": "^5.4 || ^6.0 || ^7.0", @@ -6970,7 +7178,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/serializer/issues", - "source": "https://github.com/schmittjoh/serializer/tree/3.31.1" + "source": "https://github.com/schmittjoh/serializer/tree/3.32.1" }, "funding": [ { @@ -6978,7 +7186,65 @@ "type": "github" } ], - "time": "2024-10-31T18:35:14+00:00" + "time": "2024-12-03T22:30:06+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.1.25", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/7b4029a84c37cb2725fc7f011586e2997040bc95", + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/collections": "^10.0|^11.0", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.1.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.1.25" + }, + "time": "2024-08-12T22:06:33+00:00" }, { "name": "league/container", @@ -7016,11 +7282,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev", - "dev-4.x": "4.x-dev", - "dev-3.x": "3.x-dev", + "dev-1.x": "1.x-dev", "dev-2.x": "2.x-dev", - "dev-1.x": "1.x-dev" + "dev-3.x": "3.x-dev", + "dev-4.x": "4.x-dev", + "dev-master": "4.x-dev" } }, "autoload": { @@ -7064,16 +7330,16 @@ }, { "name": "league/csv", - "version": "9.18.0", + "version": "9.20.1", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790" + "reference": "491d1e79e973a7370c7571dc0fe4a7241f4936ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/b02d010e4055ae992247f6ffd1e7b103ef2a0790", - "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/491d1e79e973a7370c7571dc0fe4a7241f4936ee", + "reference": "491d1e79e973a7370c7571dc0fe4a7241f4936ee", "shasum": "" }, "require": { @@ -7085,12 +7351,12 @@ "ext-xdebug": "*", "friendsofphp/php-cs-fixer": "^3.64.0", "phpbench/phpbench": "^1.3.1", - "phpstan/phpstan": "^1.12.6", + "phpstan/phpstan": "^1.12.11", "phpstan/phpstan-deprecation-rules": "^1.2.1", - "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-phpunit": "^1.4.1", "phpstan/phpstan-strict-rules": "^1.6.1", - "phpunit/phpunit": "^10.5.16 || ^11.4.1", - "symfony/var-dumper": "^6.4.8 || ^7.1.5" + "phpunit/phpunit": "^10.5.16 || ^11.4.3", + "symfony/var-dumper": "^6.4.8 || ^7.1.8" }, "suggest": { "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes", @@ -7147,39 +7413,34 @@ "type": "github" } ], - "time": "2024-10-18T08:14:48+00:00" + "time": "2024-12-18T10:11:15+00:00" }, { "name": "league/oauth2-client", - "version": "2.7.0", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-client.git", - "reference": "160d6274b03562ebeb55ed18399281d8118b76c8" + "reference": "3d5cf8d0543731dfb725ab30e4d7289891991e13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/160d6274b03562ebeb55ed18399281d8118b76c8", - "reference": "160d6274b03562ebeb55ed18399281d8118b76c8", + "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/3d5cf8d0543731dfb725ab30e4d7289891991e13", + "reference": "3d5cf8d0543731dfb725ab30e4d7289891991e13", "shasum": "" }, "require": { - "guzzlehttp/guzzle": "^6.0 || ^7.0", - "paragonie/random_compat": "^1 || ^2 || ^9.99", - "php": "^5.6 || ^7.0 || ^8.0" + "ext-json": "*", + "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", + "php": "^7.1 || >=8.0.0 <8.5.0" }, "require-dev": { "mockery/mockery": "^1.3.5", - "php-parallel-lint/php-parallel-lint": "^1.3.1", - "phpunit/phpunit": "^5.7 || ^6.0 || ^9.5", - "squizlabs/php_codesniffer": "^2.3 || ^3.0" + "php-parallel-lint/php-parallel-lint": "^1.4", + "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11", + "squizlabs/php_codesniffer": "^3.11" }, "type": "library", - "extra": { - "branch-alias": { - "dev-2.x": "2.0.x-dev" - } - }, "autoload": { "psr-4": { "League\\OAuth2\\Client\\": "src/" @@ -7215,9 +7476,9 @@ ], "support": { "issues": "https://github.com/thephpleague/oauth2-client/issues", - "source": "https://github.com/thephpleague/oauth2-client/tree/2.7.0" + "source": "https://github.com/thephpleague/oauth2-client/tree/2.8.0" }, - "time": "2023-04-16T18:19:15+00:00" + "time": "2024-12-11T05:05:52+00:00" }, { "name": "maennchen/zipstream-php", @@ -7542,12 +7803,12 @@ "type": "library", "extra": { "laravel": { - "providers": [ - "Nicoeg\\Dawa\\DawaServiceProvider" - ], "aliases": { "Dawa": "Nicoeg\\Dawa\\DawaFacade" - } + }, + "providers": [ + "Nicoeg\\Dawa\\DawaServiceProvider" + ] } }, "autoload": { @@ -7579,16 +7840,16 @@ }, { "name": "nikic/php-parser", - "version": "v5.3.1", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b" + "reference": "447a020a1f875a434d62f2a401f53b82a396e494" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b", - "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", + "reference": "447a020a1f875a434d62f2a401f53b82a396e494", "shasum": "" }, "require": { @@ -7631,9 +7892,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" }, - "time": "2024-10-08T18:51:32+00:00" + "time": "2024-12-30T11:07:19+00:00" }, { "name": "onelogin/php-saml", @@ -7756,56 +8017,6 @@ }, "time": "2021-12-15T12:32:42+00:00" }, - { - "name": "paragonie/random_compat", - "version": "v9.99.100", - "source": { - "type": "git", - "url": "https://github.com/paragonie/random_compat.git", - "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", - "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", - "shasum": "" - }, - "require": { - "php": ">= 7" - }, - "require-dev": { - "phpunit/phpunit": "4.*|5.*", - "vimeo/psalm": "^1" - }, - "suggest": { - "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." - }, - "type": "library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Paragon Initiative Enterprises", - "email": "security@paragonie.com", - "homepage": "https://paragonie.com" - } - ], - "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", - "keywords": [ - "csprng", - "polyfill", - "pseudorandom", - "random" - ], - "support": { - "email": "info@paragonie.com", - "issues": "https://github.com/paragonie/random_compat/issues", - "source": "https://github.com/paragonie/random_compat" - }, - "time": "2020-10-15T08:29:30+00:00" - }, { "name": "pear/archive_tar", "version": "1.5.0", @@ -7929,16 +8140,16 @@ }, { "name": "pear/pear-core-minimal", - "version": "v1.10.15", + "version": "v1.10.16", "source": { "type": "git", "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c" + "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c", - "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033", + "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033", "shasum": "" }, "require": { @@ -7974,7 +8185,7 @@ "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", "source": "https://github.com/pear/pear-core-minimal" }, - "time": "2024-03-16T18:41:45+00:00" + "time": "2024-11-24T22:27:58+00:00" }, { "name": "pear/pear_exception", @@ -8231,21 +8442,21 @@ }, { "name": "php-http/guzzle7-adapter", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-http/guzzle7-adapter.git", - "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01" + "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01", - "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01", + "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb", + "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb", "shasum": "" }, "require": { "guzzlehttp/guzzle": "^7.0", - "php": "^7.2 | ^8.0", + "php": "^7.3 | ^8.0", "php-http/httplug": "^2.0", "psr/http-client": "^1.0" }, @@ -8256,14 +8467,11 @@ }, "require-dev": { "php-http/client-integration-tests": "^3.0", + "php-http/message-factory": "^1.1", + "phpspec/prophecy-phpunit": "^2.0", "phpunit/phpunit": "^8.0|^9.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.2.x-dev" - } - }, "autoload": { "psr-4": { "Http\\Adapter\\Guzzle7\\": "src/" @@ -8287,9 +8495,9 @@ ], "support": { "issues": "https://github.com/php-http/guzzle7-adapter/issues", - "source": "https://github.com/php-http/guzzle7-adapter/tree/1.0.0" + "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0" }, - "time": "2021-03-09T07:35:15+00:00" + "time": "2024-11-26T11:14:36+00:00" }, { "name": "php-http/httplug", @@ -8402,16 +8610,16 @@ }, { "name": "phpoffice/phpspreadsheet", - "version": "2.3.2", + "version": "2.3.5", "source": { "type": "git", "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", - "reference": "08d4e08cf0c7e6182750cef7958b860b8c7f10ad" + "reference": "d836f2d7308a192441ccd1546545890b378af913" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/08d4e08cf0c7e6182750cef7958b860b8c7f10ad", - "reference": "08d4e08cf0c7e6182750cef7958b860b8c7f10ad", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/d836f2d7308a192441ccd1546545890b378af913", + "reference": "d836f2d7308a192441ccd1546545890b378af913", "shasum": "" }, "require": { @@ -8500,9 +8708,9 @@ ], "support": { "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", - "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/2.3.2" + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/2.3.5" }, - "time": "2024-11-10T09:35:47+00:00" + "time": "2024-12-27T05:17:46+00:00" }, { "name": "phpowermove/docblock", @@ -8558,30 +8766,30 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.33.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140" + "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/82a311fd3690fb2bf7b64d5c98f912b3dd746140", - "reference": "82a311fd3690fb2bf7b64d5c98f912b3dd746140", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299", + "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": "^7.4 || ^8.0" }, "require-dev": { "doctrine/annotations": "^2.0", - "nikic/php-parser": "^4.15", + "nikic/php-parser": "^5.3.0", "php-parallel-lint/php-parallel-lint": "^1.2", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.5", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^9.5", + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0", + "phpunit/phpunit": "^9.6", "symfony/process": "^5.2" }, "type": "library", @@ -8599,9 +8807,9 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.33.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0" }, - "time": "2024-10-13T11:25:22+00:00" + "time": "2024-10-13T11:29:49+00:00" }, { "name": "politsin/jquery-ui-touch-punch", @@ -9056,16 +9264,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.4", + "version": "v0.12.7", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "2fd717afa05341b4f8152547f142cd2f130f6818" + "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818", - "reference": "2fd717afa05341b4f8152547f142cd2f130f6818", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c", + "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c", "shasum": "" }, "require": { @@ -9092,12 +9300,12 @@ ], "type": "library", "extra": { - "branch-alias": { - "dev-main": "0.12.x-dev" - }, "bamarni-bin": { "bin-links": false, "forward-command": false + }, + "branch-alias": { + "dev-main": "0.12.x-dev" } }, "autoload": { @@ -9129,9 +9337,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.4" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.7" }, - "time": "2024-06-10T01:18:23+00:00" + "time": "2024-12-10T01:58:33+00:00" }, { "name": "ralouphie/getallheaders", @@ -9179,16 +9387,16 @@ }, { "name": "robrichards/xmlseclibs", - "version": "3.1.1", + "version": "3.1.3", "source": { "type": "git", "url": "https://github.com/robrichards/xmlseclibs.git", - "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df" + "reference": "2bdfd742624d739dfadbd415f00181b4a77aaf07" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/robrichards/xmlseclibs/zipball/f8f19e58f26cdb42c54b214ff8a820760292f8df", - "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df", + "url": "https://api.github.com/repos/robrichards/xmlseclibs/zipball/2bdfd742624d739dfadbd415f00181b4a77aaf07", + "reference": "2bdfd742624d739dfadbd415f00181b4a77aaf07", "shasum": "" }, "require": { @@ -9215,9 +9423,9 @@ ], "support": { "issues": "https://github.com/robrichards/xmlseclibs/issues", - "source": "https://github.com/robrichards/xmlseclibs/tree/3.1.1" + "source": "https://github.com/robrichards/xmlseclibs/tree/3.1.3" }, - "time": "2020-09-05T13:00:25+00:00" + "time": "2024-11-20T21:13:56+00:00" }, { "name": "sabberworm/php-css-parser", @@ -9352,16 +9560,16 @@ }, { "name": "symfony/cache", - "version": "v6.4.14", + "version": "v6.4.16", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "36fb8aa88833708e9f29014b6f15fac051a8b613" + "reference": "70d60e9a3603108563010f8592dff15a6f15dfae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/36fb8aa88833708e9f29014b6f15fac051a8b613", - "reference": "36fb8aa88833708e9f29014b6f15fac051a8b613", + "url": "https://api.github.com/repos/symfony/cache/zipball/70d60e9a3603108563010f8592dff15a6f15dfae", + "reference": "70d60e9a3603108563010f8592dff15a6f15dfae", "shasum": "" }, "require": { @@ -9428,7 +9636,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v6.4.14" + "source": "https://github.com/symfony/cache/tree/v6.4.16" }, "funding": [ { @@ -9444,20 +9652,20 @@ "type": "tidelift" } ], - "time": "2024-11-05T15:34:40+00:00" + "time": "2024-11-20T10:10:54+00:00" }, { "name": "symfony/cache-contracts", - "version": "v3.5.0", + "version": "v3.5.1", "source": { "type": "git", "url": "https://github.com/symfony/cache-contracts.git", - "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197" + "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197", - "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197", + "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b", + "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b", "shasum": "" }, "require": { @@ -9466,12 +9674,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "3.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -9504,7 +9712,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1" }, "funding": [ { @@ -9520,20 +9728,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2024-09-25T14:20:29+00:00" }, { "name": "symfony/console", - "version": "v6.4.14", + "version": "v6.4.17", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b" + "reference": "799445db3f15768ecc382ac5699e6da0520a0a04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/897c2441ed4eec8a8a2c37b943427d24dba3f26b", - "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b", + "url": "https://api.github.com/repos/symfony/console/zipball/799445db3f15768ecc382ac5699e6da0520a0a04", + "reference": "799445db3f15768ecc382ac5699e6da0520a0a04", "shasum": "" }, "require": { @@ -9598,7 +9806,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.14" + "source": "https://github.com/symfony/console/tree/v6.4.17" }, "funding": [ { @@ -9614,7 +9822,7 @@ "type": "tidelift" } ], - "time": "2024-11-05T15:34:40+00:00" + "time": "2024-12-07T12:07:30+00:00" }, { "name": "symfony/css-selector", @@ -9683,16 +9891,16 @@ }, { "name": "symfony/dependency-injection", - "version": "v6.4.13", + "version": "v6.4.16", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "728ae8f4e190133ce99d6d5f0bc1e8c8bd7c7a96" + "reference": "7a379d8871f6a36f01559c14e11141cc02eb8dc8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/728ae8f4e190133ce99d6d5f0bc1e8c8bd7c7a96", - "reference": "728ae8f4e190133ce99d6d5f0bc1e8c8bd7c7a96", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/7a379d8871f6a36f01559c14e11141cc02eb8dc8", + "reference": "7a379d8871f6a36f01559c14e11141cc02eb8dc8", "shasum": "" }, "require": { @@ -9744,7 +9952,7 @@ "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v6.4.13" + "source": "https://github.com/symfony/dependency-injection/tree/v6.4.16" }, "funding": [ { @@ -9760,20 +9968,20 @@ "type": "tidelift" } ], - "time": "2024-10-25T15:07:50+00:00" + "time": "2024-11-25T14:52:46+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.0", + "version": "v3.5.1", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", - "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", "shasum": "" }, "require": { @@ -9781,12 +9989,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "3.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -9811,7 +10019,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" }, "funding": [ { @@ -9827,20 +10035,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2024-09-25T14:20:29+00:00" }, { "name": "symfony/error-handler", - "version": "v6.4.14", + "version": "v6.4.17", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "9e024324511eeb00983ee76b9aedc3e6ecd993d9" + "reference": "37ad2380e8c1a8cf62a1200a5c10080b679b446c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/9e024324511eeb00983ee76b9aedc3e6ecd993d9", - "reference": "9e024324511eeb00983ee76b9aedc3e6ecd993d9", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/37ad2380e8c1a8cf62a1200a5c10080b679b446c", + "reference": "37ad2380e8c1a8cf62a1200a5c10080b679b446c", "shasum": "" }, "require": { @@ -9886,7 +10094,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.4.14" + "source": "https://github.com/symfony/error-handler/tree/v6.4.17" }, "funding": [ { @@ -9902,7 +10110,7 @@ "type": "tidelift" } ], - "time": "2024-11-05T15:34:40+00:00" + "time": "2024-12-06T13:30:51+00:00" }, { "name": "symfony/event-dispatcher", @@ -9986,16 +10194,16 @@ }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.5.0", + "version": "v3.5.1", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", - "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", "shasum": "" }, "require": { @@ -10004,12 +10212,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "3.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -10042,7 +10250,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" }, "funding": [ { @@ -10058,7 +10266,7 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2024-09-25T14:20:29+00:00" }, { "name": "symfony/filesystem", @@ -10128,16 +10336,16 @@ }, { "name": "symfony/finder", - "version": "v6.4.13", + "version": "v6.4.17", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958" + "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958", - "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958", + "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", + "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", "shasum": "" }, "require": { @@ -10172,7 +10380,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.13" + "source": "https://github.com/symfony/finder/tree/v6.4.17" }, "funding": [ { @@ -10188,27 +10396,27 @@ "type": "tidelift" } ], - "time": "2024-10-01T08:30:56+00:00" + "time": "2024-12-29T13:51:37+00:00" }, { "name": "symfony/http-client", - "version": "v6.4.14", + "version": "v6.4.17", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "05d88cbd816ad6e0202edd9a9963cb9d615b8826" + "reference": "88898d842eb29d7e1a903724c94e90a6ca9c0509" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/05d88cbd816ad6e0202edd9a9963cb9d615b8826", - "reference": "05d88cbd816ad6e0202edd9a9963cb9d615b8826", + "url": "https://api.github.com/repos/symfony/http-client/zipball/88898d842eb29d7e1a903724c94e90a6ca9c0509", + "reference": "88898d842eb29d7e1a903724c94e90a6ca9c0509", "shasum": "" }, "require": { "php": ">=8.1", "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/http-client-contracts": "^3.4.1", + "symfony/http-client-contracts": "~3.4.4|^3.5.2", "symfony/service-contracts": "^2.5|^3" }, "conflict": { @@ -10265,7 +10473,7 @@ "http" ], "support": { - "source": "https://github.com/symfony/http-client/tree/v6.4.14" + "source": "https://github.com/symfony/http-client/tree/v6.4.17" }, "funding": [ { @@ -10281,20 +10489,20 @@ "type": "tidelift" } ], - "time": "2024-11-05T16:39:55+00:00" + "time": "2024-12-18T12:18:31+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v3.5.0", + "version": "v3.5.2", "source": { "type": "git", "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "20414d96f391677bf80078aa55baece78b82647d" + "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d", - "reference": "20414d96f391677bf80078aa55baece78b82647d", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ee8d807ab20fcb51267fdace50fbe3494c31e645", + "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645", "shasum": "" }, "require": { @@ -10302,12 +10510,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "3.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -10343,7 +10551,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.2" }, "funding": [ { @@ -10359,20 +10567,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2024-12-07T08:49:48+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.4.14", + "version": "v6.4.16", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "ba020a321a95519303a3f09ec2824d34d601c388" + "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ba020a321a95519303a3f09ec2824d34d601c388", - "reference": "ba020a321a95519303a3f09ec2824d34d601c388", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57", + "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57", "shasum": "" }, "require": { @@ -10382,12 +10590,12 @@ "symfony/polyfill-php83": "^1.27" }, "conflict": { - "symfony/cache": "<6.3" + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" }, "require-dev": { "doctrine/dbal": "^2.13.1|^3|^4", "predis/predis": "^1.1|^2.0", - "symfony/cache": "^6.3|^7.0", + "symfony/cache": "^6.4.12|^7.1.5", "symfony/dependency-injection": "^5.4|^6.0|^7.0", "symfony/expression-language": "^5.4|^6.0|^7.0", "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", @@ -10420,7 +10628,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.4.14" + "source": "https://github.com/symfony/http-foundation/tree/v6.4.16" }, "funding": [ { @@ -10436,20 +10644,20 @@ "type": "tidelift" } ], - "time": "2024-11-05T16:39:55+00:00" + "time": "2024-11-13T18:58:10+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.14", + "version": "v6.4.17", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "8278a947d0369754a47b758a9e17b72cab970951" + "reference": "c5647393c5ce11833d13e4b70fff4b571d4ac710" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8278a947d0369754a47b758a9e17b72cab970951", - "reference": "8278a947d0369754a47b758a9e17b72cab970951", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c5647393c5ce11833d13e4b70fff4b571d4ac710", + "reference": "c5647393c5ce11833d13e4b70fff4b571d4ac710", "shasum": "" }, "require": { @@ -10534,7 +10742,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.4.14" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.17" }, "funding": [ { @@ -10550,7 +10758,7 @@ "type": "tidelift" } ], - "time": "2024-11-06T09:45:21+00:00" + "time": "2024-12-31T14:49:31+00:00" }, { "name": "symfony/mailer", @@ -10634,16 +10842,16 @@ }, { "name": "symfony/mime", - "version": "v6.4.13", + "version": "v6.4.17", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855" + "reference": "ea87c8850a54ff039d3e0ab4ae5586dd4e6c0232" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/1de1cf14d99b12c7ebbb850491ec6ae3ed468855", - "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855", + "url": "https://api.github.com/repos/symfony/mime/zipball/ea87c8850a54ff039d3e0ab4ae5586dd4e6c0232", + "reference": "ea87c8850a54ff039d3e0ab4ae5586dd4e6c0232", "shasum": "" }, "require": { @@ -10699,7 +10907,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.4.13" + "source": "https://github.com/symfony/mime/tree/v6.4.17" }, "funding": [ { @@ -10715,7 +10923,7 @@ "type": "tidelift" } ], - "time": "2024-10-25T15:07:50+00:00" + "time": "2024-12-02T11:09:41+00:00" }, { "name": "symfony/options-resolver", @@ -10788,20 +10996,20 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.29.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-ctype": "*" @@ -10812,8 +11020,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -10847,7 +11055,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" }, "funding": [ { @@ -10863,24 +11071,24 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.29.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f" + "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", - "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956", + "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-iconv": "*" @@ -10891,8 +11099,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -10927,7 +11135,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0" }, "funding": [ { @@ -10943,24 +11151,24 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.29.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance" @@ -10968,8 +11176,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -11005,7 +11213,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" }, "funding": [ { @@ -11021,26 +11229,25 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.29.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", "shasum": "" }, "require": { - "php": ">=7.1", - "symfony/polyfill-intl-normalizer": "^1.10", - "symfony/polyfill-php72": "^1.10" + "php": ">=7.2", + "symfony/polyfill-intl-normalizer": "^1.10" }, "suggest": { "ext-intl": "For best performance" @@ -11048,8 +11255,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -11089,7 +11296,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" }, "funding": [ { @@ -11105,24 +11312,24 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.29.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" + "reference": "3833d7255cc303546435cb650316bff708a1c75c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance" @@ -11130,8 +11337,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -11170,7 +11377,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" }, "funding": [ { @@ -11186,24 +11393,24 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.29.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-mbstring": "*" @@ -11214,8 +11421,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -11250,72 +11457,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-29T20:11:03+00:00" - }, - { - "name": "symfony/polyfill-php72", - "version": "v1.31.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce", - "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "type": "metapackage", - "extra": { - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" }, "funding": [ { @@ -11353,8 +11495,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -11429,8 +11571,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -11509,8 +11651,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -11567,27 +11709,26 @@ }, { "name": "symfony/polyfill-php83", - "version": "v1.29.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "86fcae159633351e5fd145d1c47de6c528f8caff" + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff", - "reference": "86fcae159633351e5fd145d1c47de6c528f8caff", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", "shasum": "" }, "require": { - "php": ">=7.1", - "symfony/polyfill-php80": "^1.14" + "php": ">=7.2" }, "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -11624,7 +11765,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0" }, "funding": [ { @@ -11640,7 +11781,7 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-uuid", @@ -11668,8 +11809,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -11723,16 +11864,16 @@ }, { "name": "symfony/process", - "version": "v6.4.14", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "25214adbb0996d18112548de20c281be9f27279f" + "reference": "3cb242f059c14ae08591c5c4087d1fe443564392" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/25214adbb0996d18112548de20c281be9f27279f", - "reference": "25214adbb0996d18112548de20c281be9f27279f", + "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392", + "reference": "3cb242f059c14ae08591c5c4087d1fe443564392", "shasum": "" }, "require": { @@ -11764,7 +11905,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.4.14" + "source": "https://github.com/symfony/process/tree/v6.4.15" }, "funding": [ { @@ -11780,7 +11921,7 @@ "type": "tidelift" } ], - "time": "2024-11-06T09:25:01+00:00" + "time": "2024-11-06T14:19:14+00:00" }, { "name": "symfony/property-access", @@ -11861,32 +12002,31 @@ }, { "name": "symfony/property-info", - "version": "v7.1.6", + "version": "v7.2.2", "source": { "type": "git", "url": "https://github.com/symfony/property-info.git", - "reference": "6b630ff585d9fdc72f50369885ad4364a849cf02" + "reference": "1dfeb0dac7a99f7b3be42db9ccc299c5a6483fcf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-info/zipball/6b630ff585d9fdc72f50369885ad4364a849cf02", - "reference": "6b630ff585d9fdc72f50369885ad4364a849cf02", + "url": "https://api.github.com/repos/symfony/property-info/zipball/1dfeb0dac7a99f7b3be42db9ccc299c5a6483fcf", + "reference": "1dfeb0dac7a99f7b3be42db9ccc299c5a6483fcf", "shasum": "" }, "require": { "php": ">=8.2", "symfony/string": "^6.4|^7.0", - "symfony/type-info": "^7.1" + "symfony/type-info": "~7.1.9|^7.2.2" }, "conflict": { "phpdocumentor/reflection-docblock": "<5.2", "phpdocumentor/type-resolver": "<1.5.1", - "symfony/dependency-injection": "<6.4", - "symfony/serializer": "<6.4" + "symfony/dependency-injection": "<6.4" }, "require-dev": { "phpdocumentor/reflection-docblock": "^5.2", - "phpstan/phpdoc-parser": "^1.0", + "phpstan/phpdoc-parser": "^1.0|^2.0", "symfony/cache": "^6.4|^7.0", "symfony/dependency-injection": "^6.4|^7.0", "symfony/serializer": "^6.4|^7.0" @@ -11925,7 +12065,7 @@ "validator" ], "support": { - "source": "https://github.com/symfony/property-info/tree/v7.1.6" + "source": "https://github.com/symfony/property-info/tree/v7.2.2" }, "funding": [ { @@ -11941,7 +12081,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-12-31T11:04:50+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -12028,16 +12168,16 @@ }, { "name": "symfony/routing", - "version": "v6.4.13", + "version": "v6.4.16", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "640a74250d13f9c30d5ca045b6aaaabcc8215278" + "reference": "91e02e606b4b705c2f4fb42f7e7708b7923a3220" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/640a74250d13f9c30d5ca045b6aaaabcc8215278", - "reference": "640a74250d13f9c30d5ca045b6aaaabcc8215278", + "url": "https://api.github.com/repos/symfony/routing/zipball/91e02e606b4b705c2f4fb42f7e7708b7923a3220", + "reference": "91e02e606b4b705c2f4fb42f7e7708b7923a3220", "shasum": "" }, "require": { @@ -12091,7 +12231,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.13" + "source": "https://github.com/symfony/routing/tree/v6.4.16" }, "funding": [ { @@ -12107,20 +12247,20 @@ "type": "tidelift" } ], - "time": "2024-10-01T08:30:56+00:00" + "time": "2024-11-13T15:31:34+00:00" }, { "name": "symfony/serializer", - "version": "v6.4.13", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "8be421505938b11a0ca4f656e4322232236386f0" + "reference": "9d862d66198f3c2e30404228629ef4c18d5d608e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/8be421505938b11a0ca4f656e4322232236386f0", - "reference": "8be421505938b11a0ca4f656e4322232236386f0", + "url": "https://api.github.com/repos/symfony/serializer/zipball/9d862d66198f3c2e30404228629ef4c18d5d608e", + "reference": "9d862d66198f3c2e30404228629ef4c18d5d608e", "shasum": "" }, "require": { @@ -12189,7 +12329,7 @@ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/serializer/tree/v6.4.13" + "source": "https://github.com/symfony/serializer/tree/v6.4.15" }, "funding": [ { @@ -12205,20 +12345,20 @@ "type": "tidelift" } ], - "time": "2024-10-03T09:58:04+00:00" + "time": "2024-10-23T13:25:59+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.5.0", + "version": "v3.5.1", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", - "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", "shasum": "" }, "require": { @@ -12231,12 +12371,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "3.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -12272,7 +12412,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" }, "funding": [ { @@ -12288,20 +12428,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2024-09-25T14:20:29+00:00" }, { "name": "symfony/string", - "version": "v6.4.13", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627" + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627", - "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627", + "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", "shasum": "" }, "require": { @@ -12358,7 +12498,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.13" + "source": "https://github.com/symfony/string/tree/v6.4.15" }, "funding": [ { @@ -12374,20 +12514,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:18:03+00:00" + "time": "2024-11-13T13:31:12+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.5.0", + "version": "v3.5.1", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a" + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", - "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", "shasum": "" }, "require": { @@ -12395,12 +12535,12 @@ }, "type": "library", "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, "branch-alias": { "dev-main": "3.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -12436,7 +12576,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" }, "funding": [ { @@ -12452,35 +12592,28 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2024-09-25T14:20:29+00:00" }, { "name": "symfony/type-info", - "version": "v7.1.6", + "version": "v7.2.2", "source": { "type": "git", "url": "https://github.com/symfony/type-info.git", - "reference": "a13032128c307470955c45c99201349b15cd7f4a" + "reference": "3b5a17470fff0034f25fd4287cbdaa0010d2f749" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/type-info/zipball/a13032128c307470955c45c99201349b15cd7f4a", - "reference": "a13032128c307470955c45c99201349b15cd7f4a", + "url": "https://api.github.com/repos/symfony/type-info/zipball/3b5a17470fff0034f25fd4287cbdaa0010d2f749", + "reference": "3b5a17470fff0034f25fd4287cbdaa0010d2f749", "shasum": "" }, "require": { "php": ">=8.2", "psr/container": "^1.1|^2.0" }, - "conflict": { - "phpstan/phpdoc-parser": "<1.0", - "symfony/dependency-injection": "<6.4", - "symfony/property-info": "<6.4" - }, "require-dev": { - "phpstan/phpdoc-parser": "^1.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/property-info": "^6.4|^7.0" + "phpstan/phpdoc-parser": "^1.0|^2.0" }, "type": "library", "autoload": { @@ -12518,7 +12651,7 @@ "type" ], "support": { - "source": "https://github.com/symfony/type-info/tree/v7.1.6" + "source": "https://github.com/symfony/type-info/tree/v7.2.2" }, "funding": [ { @@ -12534,7 +12667,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-12-20T13:38:37+00:00" }, { "name": "symfony/uid", @@ -12612,16 +12745,16 @@ }, { "name": "symfony/validator", - "version": "v6.4.14", + "version": "v6.4.17", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "dc259b85e59a6569e205966d447dec0a7d95facf" + "reference": "a3c19a0e542d427c207e22242043ef35b5b99a2c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/dc259b85e59a6569e205966d447dec0a7d95facf", - "reference": "dc259b85e59a6569e205966d447dec0a7d95facf", + "url": "https://api.github.com/repos/symfony/validator/zipball/a3c19a0e542d427c207e22242043ef35b5b99a2c", + "reference": "a3c19a0e542d427c207e22242043ef35b5b99a2c", "shasum": "" }, "require": { @@ -12689,7 +12822,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v6.4.14" + "source": "https://github.com/symfony/validator/tree/v6.4.17" }, "funding": [ { @@ -12705,20 +12838,20 @@ "type": "tidelift" } ], - "time": "2024-11-04T11:33:53+00:00" + "time": "2024-12-29T12:50:19+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.4.14", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "93c09246038178717a9c14b809ea8151ffcf7091" + "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/93c09246038178717a9c14b809ea8151ffcf7091", - "reference": "93c09246038178717a9c14b809ea8151ffcf7091", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80", + "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80", "shasum": "" }, "require": { @@ -12774,7 +12907,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.4.14" + "source": "https://github.com/symfony/var-dumper/tree/v6.4.15" }, "funding": [ { @@ -12790,7 +12923,7 @@ "type": "tidelift" } ], - "time": "2024-11-05T15:34:40+00:00" + "time": "2024-11-08T15:28:48+00:00" }, { "name": "symfony/var-exporter", @@ -12943,31 +13076,33 @@ }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "v2.2.7", + "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb" + "reference": "0d72ac1c00084279c1816675284073c5a337c20d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb", - "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", - "php": "^5.5 || ^7.0 || ^8.0", - "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" + "php": "^7.4 || ^8.0", + "symfony/css-selector": "^5.4 || ^6.0 || ^7.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^8.5.21 || ^9.5.10" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -12990,22 +13125,22 @@ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", "support": { "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", - "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7" + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0" }, - "time": "2023-12-08T13:03:43+00:00" + "time": "2024-12-21T16:25:41+00:00" }, { "name": "twig/twig", - "version": "v3.14.2", + "version": "v3.16.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a" + "reference": "475ad2dc97d65d8631393e721e7e44fb544f0561" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/475ad2dc97d65d8631393e721e7e44fb544f0561", + "reference": "475ad2dc97d65d8631393e721e7e44fb544f0561", "shasum": "" }, "require": { @@ -13016,6 +13151,7 @@ "symfony/polyfill-php81": "^1.29" }, "require-dev": { + "phpstan/phpstan": "^2.0", "psr/container": "^1.0|^2.0", "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0" }, @@ -13059,7 +13195,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.14.2" + "source": "https://github.com/twigphp/Twig/tree/v3.16.0" }, "funding": [ { @@ -13071,7 +13207,7 @@ "type": "tidelift" } ], - "time": "2024-11-07T12:36:22+00:00" + "time": "2024-11-29T08:27:05+00:00" }, { "name": "vlucas/phpdotenv", @@ -13569,16 +13705,16 @@ }, { "name": "composer/ca-bundle", - "version": "1.5.3", + "version": "1.5.4", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "3b1fc3f0be055baa7c6258b1467849c3e8204eb2" + "reference": "bc0593537a463e55cadf45fd938d23b75095b7e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/3b1fc3f0be055baa7c6258b1467849c3e8204eb2", - "reference": "3b1fc3f0be055baa7c6258b1467849c3e8204eb2", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/bc0593537a463e55cadf45fd938d23b75095b7e1", + "reference": "bc0593537a463e55cadf45fd938d23b75095b7e1", "shasum": "" }, "require": { @@ -13625,7 +13761,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.5.3" + "source": "https://github.com/composer/ca-bundle/tree/1.5.4" }, "funding": [ { @@ -13641,20 +13777,20 @@ "type": "tidelift" } ], - "time": "2024-11-04T10:15:26+00:00" + "time": "2024-11-27T15:35:25+00:00" }, { "name": "composer/class-map-generator", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/composer/class-map-generator.git", - "reference": "98bbf6780e56e0fd2404fe4b82eb665a0f93b783" + "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/class-map-generator/zipball/98bbf6780e56e0fd2404fe4b82eb665a0f93b783", - "reference": "98bbf6780e56e0fd2404fe4b82eb665a0f93b783", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915", + "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915", "shasum": "" }, "require": { @@ -13663,10 +13799,10 @@ "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7" }, "require-dev": { - "phpstan/phpstan": "^1.6", - "phpstan/phpstan-deprecation-rules": "^1", - "phpstan/phpstan-phpunit": "^1", - "phpstan/phpstan-strict-rules": "^1.1", + "phpstan/phpstan": "^1.12 || ^2", + "phpstan/phpstan-deprecation-rules": "^1 || ^2", + "phpstan/phpstan-phpunit": "^1 || ^2", + "phpstan/phpstan-strict-rules": "^1.1 || ^2", "phpunit/phpunit": "^8", "symfony/filesystem": "^5.4 || ^6" }, @@ -13698,7 +13834,7 @@ ], "support": { "issues": "https://github.com/composer/class-map-generator/issues", - "source": "https://github.com/composer/class-map-generator/tree/1.4.0" + "source": "https://github.com/composer/class-map-generator/tree/1.5.0" }, "funding": [ { @@ -13714,20 +13850,20 @@ "type": "tidelift" } ], - "time": "2024-10-03T18:14:00+00:00" + "time": "2024-11-25T16:11:06+00:00" }, { "name": "composer/composer", - "version": "2.8.2", + "version": "2.8.4", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "6e543d03187c882ea1c6ba43add2467754427803" + "reference": "112e37d1dca22b3fdb81cf3524ab4994f47fdb8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/6e543d03187c882ea1c6ba43add2467754427803", - "reference": "6e543d03187c882ea1c6ba43add2467754427803", + "url": "https://api.github.com/repos/composer/composer/zipball/112e37d1dca22b3fdb81cf3524ab4994f47fdb8c", + "reference": "112e37d1dca22b3fdb81cf3524ab4994f47fdb8c", "shasum": "" }, "require": { @@ -13741,7 +13877,7 @@ "justinrainbow/json-schema": "^5.3", "php": "^7.2.5 || ^8.0", "psr/log": "^1.0 || ^2.0 || ^3.0", - "react/promise": "^3.2", + "react/promise": "^2.11 || ^3.2", "seld/jsonlint": "^1.4", "seld/phar-utils": "^1.2", "seld/signal-handler": "^2.0", @@ -13771,13 +13907,13 @@ ], "type": "library", "extra": { - "branch-alias": { - "dev-main": "2.8-dev" - }, "phpstan": { "includes": [ "phpstan/rules.neon" ] + }, + "branch-alias": { + "dev-main": "2.8-dev" } }, "autoload": { @@ -13812,7 +13948,7 @@ "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", "security": "https://github.com/composer/composer/security/policy", - "source": "https://github.com/composer/composer/tree/2.8.2" + "source": "https://github.com/composer/composer/tree/2.8.4" }, "funding": [ { @@ -13828,7 +13964,7 @@ "type": "tidelift" } ], - "time": "2024-10-29T15:12:11+00:00" + "time": "2024-12-11T10:57:47+00:00" }, { "name": "composer/metadata-minifier", @@ -13926,13 +14062,13 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.x-dev" - }, "phpstan": { "includes": [ "extension.neon" ] + }, + "branch-alias": { + "dev-main": "3.x-dev" } }, "autoload": { @@ -14204,16 +14340,16 @@ }, { "name": "drupal/coder", - "version": "8.3.25", + "version": "8.3.26", "source": { "type": "git", "url": "https://github.com/pfrenssen/coder.git", - "reference": "c58e5a0c44c0010bbc8a91fc468f4667e177b976" + "reference": "fd98546ce3373aa7767240901eda47963ce64c82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pfrenssen/coder/zipball/c58e5a0c44c0010bbc8a91fc468f4667e177b976", - "reference": "c58e5a0c44c0010bbc8a91fc468f4667e177b976", + "url": "https://api.github.com/repos/pfrenssen/coder/zipball/fd98546ce3373aa7767240901eda47963ce64c82", + "reference": "fd98546ce3373aa7767240901eda47963ce64c82", "shasum": "" }, "require": { @@ -14251,25 +14387,19 @@ "issues": "https://www.drupal.org/project/issues/coder", "source": "https://www.drupal.org/project/coder" }, - "time": "2024-09-22T19:02:16+00:00" + "time": "2024-11-28T23:14:29+00:00" }, { "name": "drupal/content_fixtures", - "version": "3.1.4", + "version": "dev-3498162-not-compatible-with", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/content_fixtures.git", - "reference": "3.1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/content_fixtures-3.1.4.zip", - "reference": "3.1.4", - "shasum": "9a20035c2d8e312e6138a7b0991bb7c86581c716" + "url": "https://git.drupalcode.org/issue/content_fixtures-3498162", + "reference": "6efd813a5f7d3d7a6a0e1b7f0785ed1095ffb219" }, "require": { "drupal/core": "^8.7.7 || ^9 || ^10", - "drush/drush": "^9 || ^10 || ^11 || ^12", + "drush/drush": "^9 || ^10 || ^11 || ^12 || ^13", "php": ">=7.1.0" }, "suggest": { @@ -14278,61 +14408,48 @@ }, "type": "drupal-module", "extra": { - "drupal": { - "version": "3.1.4", - "datestamp": "1689798618", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, "drush": { "services": { "drush.services.yml": "^9 || ^10 || ^11 || ^12" } } }, - "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0+" ], "authors": [ { "name": "Łukasz Zaroda", - "homepage": "https://www.drupal.org/user/1890152", "email": "luken@luken-tech.pl" } ], "description": "Module privides an API for creating generators of dummy content in a way similar to the 'DoctrineFixturesBundle'.", - "homepage": "https://www.drupal.org/project/content_fixtures", - "support": { - "source": "https://git.drupalcode.org/project/content_fixtures" - } + "time": "2025-01-08T12:00:10+00:00" }, { "name": "drupal/core-dev", - "version": "10.3.8", + "version": "10.4.1", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", - "reference": "2f117398ad5e7df411b4715c1b69ab4847c5cc08" + "reference": "9c6c089f73671083d9588affa287a59a80e6edc8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-dev/zipball/2f117398ad5e7df411b4715c1b69ab4847c5cc08", - "reference": "2f117398ad5e7df411b4715c1b69ab4847c5cc08", + "url": "https://api.github.com/repos/drupal/core-dev/zipball/9c6c089f73671083d9588affa287a59a80e6edc8", + "reference": "9c6c089f73671083d9588affa287a59a80e6edc8", "shasum": "" }, "require": { "behat/mink": "^1.11", "behat/mink-browserkit-driver": "^2.2", "colinodell/psr-testlogger": "^1.2", - "composer/composer": "^2.7.7", + "composer/composer": "^2.8.1", "drupal/coder": "^8.3.10", "justinrainbow/json-schema": "^5.2", "lullabot/mink-selenium2-driver": "^1.7", "lullabot/php-webdriver": "^2.0.4", - "mglaman/phpstan-drupal": "^1.2.10", + "mglaman/phpstan-drupal": "^1.2.12", "micheh/phpcs-gitlab": "^1.1", "mikey179/vfsstream": "^1.6.11", "open-telemetry/exporter-otlp": "^1", @@ -14340,7 +14457,7 @@ "php-http/guzzle7-adapter": "^1.0", "phpspec/prophecy-phpunit": "^2", "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.11.0", + "phpstan/phpstan": "^1.12.4", "phpstan/phpstan-phpunit": "^1.3.16", "phpunit/phpunit": "^9.6.13", "symfony/browser-kit": "^6.4", @@ -14361,9 +14478,9 @@ ], "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", "support": { - "source": "https://github.com/drupal/core-dev/tree/10.3.8" + "source": "https://github.com/drupal/core-dev/tree/10.4.1" }, - "time": "2024-07-04T10:19:29+00:00" + "time": "2024-11-21T12:39:32+00:00" }, { "name": "drupal/masquerade", @@ -14438,49 +14555,55 @@ }, { "name": "ergebnis/composer-normalize", - "version": "2.44.0", + "version": "2.45.0", "source": { "type": "git", "url": "https://github.com/ergebnis/composer-normalize.git", - "reference": "bd0c446426bb837ae0cc9f97948167e658bd11d2" + "reference": "bb82b484bed2556da6311b9eff779fa7e73ce937" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/bd0c446426bb837ae0cc9f97948167e658bd11d2", - "reference": "bd0c446426bb837ae0cc9f97948167e658bd11d2", + "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/bb82b484bed2556da6311b9eff779fa7e73ce937", + "reference": "bb82b484bed2556da6311b9eff779fa7e73ce937", "shasum": "" }, "require": { "composer-plugin-api": "^2.0.0", - "ergebnis/json": "^1.2.0", - "ergebnis/json-normalizer": "^4.5.0", - "ergebnis/json-printer": "^3.5.0", + "ergebnis/json": "^1.4.0", + "ergebnis/json-normalizer": "^4.8.0", + "ergebnis/json-printer": "^3.7.0", "ext-json": "*", - "justinrainbow/json-schema": "^5.2.12", - "localheinz/diff": "^1.1.1", + "justinrainbow/json-schema": "^5.2.12 || ^6.0.0", + "localheinz/diff": "^1.2.0", "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" }, "require-dev": { - "composer/composer": "^2.7.7", - "ergebnis/license": "^2.5.0", - "ergebnis/php-cs-fixer-config": "^6.37.0", - "ergebnis/phpunit-slow-test-detector": "^2.16.0", - "fakerphp/faker": "^1.23.1", + "composer/composer": "^2.8.3", + "ergebnis/license": "^2.6.0", + "ergebnis/php-cs-fixer-config": "^6.39.0", + "ergebnis/phpunit-slow-test-detector": "^2.17.0", + "fakerphp/faker": "^1.24.1", "infection/infection": "~0.26.6", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.12", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.1", + "phpstan/phpstan-strict-rules": "^1.6.1", "phpunit/phpunit": "^9.6.20", - "psalm/plugin-phpunit": "~0.19.0", - "rector/rector": "^1.2.5", - "symfony/filesystem": "^5.4.41", - "vimeo/psalm": "^5.26.1" + "rector/rector": "^1.2.10", + "symfony/filesystem": "^5.4.41" }, "type": "composer-plugin", "extra": { "class": "Ergebnis\\Composer\\Normalize\\NormalizePlugin", + "branch-alias": { + "dev-main": "2.44-dev" + }, + "plugin-optional": true, "composer-normalize": { "indent-size": 2, "indent-style": "space" - }, - "plugin-optional": true + } }, "autoload": { "psr-4": { @@ -14511,20 +14634,20 @@ "security": "https://github.com/ergebnis/composer-normalize/blob/main/.github/SECURITY.md", "source": "https://github.com/ergebnis/composer-normalize" }, - "time": "2024-09-30T21:56:22+00:00" + "time": "2024-12-04T18:36:37+00:00" }, { "name": "ergebnis/json", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/ergebnis/json.git", - "reference": "84051b4e243d6a8e2f8271604b11ffa52d29bc7a" + "reference": "7656ac2aa6c2ca4408f96f599e9a17a22c464f69" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/json/zipball/84051b4e243d6a8e2f8271604b11ffa52d29bc7a", - "reference": "84051b4e243d6a8e2f8271604b11ffa52d29bc7a", + "url": "https://api.github.com/repos/ergebnis/json/zipball/7656ac2aa6c2ca4408f96f599e9a17a22c464f69", + "reference": "7656ac2aa6c2ca4408f96f599e9a17a22c464f69", "shasum": "" }, "require": { @@ -14532,16 +14655,19 @@ "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" }, "require-dev": { - "ergebnis/data-provider": "^3.2.0", - "ergebnis/license": "^2.4.0", - "ergebnis/php-cs-fixer-config": "^6.36.0", - "ergebnis/phpunit-slow-test-detector": "^2.15.1", - "fakerphp/faker": "^1.23.1", + "ergebnis/data-provider": "^3.3.0", + "ergebnis/license": "^2.5.0", + "ergebnis/php-cs-fixer-config": "^6.37.0", + "ergebnis/phpunit-slow-test-detector": "^2.16.1", + "fakerphp/faker": "^1.24.0", "infection/infection": "~0.26.6", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.10", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.1", "phpunit/phpunit": "^9.6.18", - "psalm/plugin-phpunit": "~0.19.0", - "rector/rector": "^1.2.5", - "vimeo/psalm": "^5.26.1" + "rector/rector": "^1.2.10" }, "type": "library", "extra": { @@ -14576,20 +14702,20 @@ "security": "https://github.com/ergebnis/json/blob/main/.github/SECURITY.md", "source": "https://github.com/ergebnis/json" }, - "time": "2024-09-27T15:01:05+00:00" + "time": "2024-11-17T11:51:22+00:00" }, { "name": "ergebnis/json-normalizer", - "version": "4.6.0", + "version": "4.8.0", "source": { "type": "git", "url": "https://github.com/ergebnis/json-normalizer.git", - "reference": "859fd3cee417f0b10a8e6ffb8dbeb03587106b8b" + "reference": "e3a477b62808f377f4fc69a50f9eb66ec102747b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/859fd3cee417f0b10a8e6ffb8dbeb03587106b8b", - "reference": "859fd3cee417f0b10a8e6ffb8dbeb03587106b8b", + "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/e3a477b62808f377f4fc69a50f9eb66ec102747b", + "reference": "e3a477b62808f377f4fc69a50f9eb66ec102747b", "shasum": "" }, "require": { @@ -14598,26 +14724,39 @@ "ergebnis/json-printer": "^3.5.0", "ergebnis/json-schema-validator": "^4.2.0", "ext-json": "*", - "justinrainbow/json-schema": "^5.2.12", + "justinrainbow/json-schema": "^5.2.12 || ^6.0.0", "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" }, "require-dev": { "composer/semver": "^3.4.3", - "ergebnis/data-provider": "^3.2.0", - "ergebnis/license": "^2.4.0", - "ergebnis/php-cs-fixer-config": "^6.36.0", - "ergebnis/phpunit-slow-test-detector": "^2.15.1", - "fakerphp/faker": "^1.23.1", + "ergebnis/composer-normalize": "^2.44.0", + "ergebnis/data-provider": "^3.3.0", + "ergebnis/license": "^2.5.0", + "ergebnis/php-cs-fixer-config": "^6.37.0", + "ergebnis/phpunit-slow-test-detector": "^2.16.1", + "fakerphp/faker": "^1.24.0", "infection/infection": "~0.26.6", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.10", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.1", "phpunit/phpunit": "^9.6.19", - "psalm/plugin-phpunit": "~0.19.0", - "rector/rector": "^1.2.5", - "vimeo/psalm": "^5.26.1" + "rector/rector": "^1.2.10" }, "suggest": { "composer/semver": "If you want to use ComposerJsonNormalizer or VersionConstraintNormalizer" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.8-dev" + }, + "composer-normalize": { + "indent-size": 2, + "indent-style": "space" + } + }, "autoload": { "psr-4": { "Ergebnis\\Json\\Normalizer\\": "src/" @@ -14645,20 +14784,20 @@ "security": "https://github.com/ergebnis/json-normalizer/blob/main/.github/SECURITY.md", "source": "https://github.com/ergebnis/json-normalizer" }, - "time": "2024-09-27T15:11:59+00:00" + "time": "2024-12-04T16:48:55+00:00" }, { "name": "ergebnis/json-pointer", - "version": "3.5.0", + "version": "3.6.0", "source": { "type": "git", "url": "https://github.com/ergebnis/json-pointer.git", - "reference": "f6ff71e69305b8ab5e4457e374b35dcd0812609b" + "reference": "4fc85d8edb74466d282119d8d9541ec7cffc0798" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/json-pointer/zipball/f6ff71e69305b8ab5e4457e374b35dcd0812609b", - "reference": "f6ff71e69305b8ab5e4457e374b35dcd0812609b", + "url": "https://api.github.com/repos/ergebnis/json-pointer/zipball/4fc85d8edb74466d282119d8d9541ec7cffc0798", + "reference": "4fc85d8edb74466d282119d8d9541ec7cffc0798", "shasum": "" }, "require": { @@ -14672,15 +14811,18 @@ "ergebnis/phpunit-slow-test-detector": "^2.15.0", "fakerphp/faker": "^1.23.1", "infection/infection": "~0.26.6", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.10", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.1", "phpunit/phpunit": "^9.6.19", - "psalm/plugin-phpunit": "~0.19.0", - "rector/rector": "^1.2.1", - "vimeo/psalm": "^5.25.0" + "rector/rector": "^1.2.10" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.6-dev" }, "composer-normalize": { "indent-size": 2, @@ -14715,20 +14857,20 @@ "security": "https://github.com/ergebnis/json-pointer/blob/main/.github/SECURITY.md", "source": "https://github.com/ergebnis/json-pointer" }, - "time": "2024-09-27T15:47:15+00:00" + "time": "2024-11-17T12:37:06+00:00" }, { "name": "ergebnis/json-printer", - "version": "3.6.0", + "version": "3.7.0", "source": { "type": "git", "url": "https://github.com/ergebnis/json-printer.git", - "reference": "d2e51379dc62d73017a779a78fcfba568de39e0a" + "reference": "ced41fce7854152f0e8f38793c2ffe59513cdd82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/d2e51379dc62d73017a779a78fcfba568de39e0a", - "reference": "d2e51379dc62d73017a779a78fcfba568de39e0a", + "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/ced41fce7854152f0e8f38793c2ffe59513cdd82", + "reference": "ced41fce7854152f0e8f38793c2ffe59513cdd82", "shasum": "" }, "require": { @@ -14737,16 +14879,19 @@ "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" }, "require-dev": { - "ergebnis/data-provider": "^3.2.0", - "ergebnis/license": "^2.4.0", - "ergebnis/php-cs-fixer-config": "^6.36.0", - "ergebnis/phpunit-slow-test-detector": "^2.15.1", - "fakerphp/faker": "^1.23.1", + "ergebnis/data-provider": "^3.3.0", + "ergebnis/license": "^2.5.0", + "ergebnis/php-cs-fixer-config": "^6.37.0", + "ergebnis/phpunit-slow-test-detector": "^2.16.1", + "fakerphp/faker": "^1.24.0", "infection/infection": "~0.26.6", - "phpunit/phpunit": "^9.6.19", - "psalm/plugin-phpunit": "~0.19.0", - "rector/rector": "~1.2.5", - "vimeo/psalm": "^5.26.1" + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.10", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.1", + "phpstan/phpstan-strict-rules": "^1.6.1", + "phpunit/phpunit": "^9.6.21", + "rector/rector": "^1.2.10" }, "type": "library", "autoload": { @@ -14777,43 +14922,50 @@ "security": "https://github.com/ergebnis/json-printer/blob/main/.github/SECURITY.md", "source": "https://github.com/ergebnis/json-printer" }, - "time": "2024-09-27T15:19:56+00:00" + "time": "2024-11-17T11:20:51+00:00" }, { "name": "ergebnis/json-schema-validator", - "version": "4.3.0", + "version": "4.4.0", "source": { "type": "git", "url": "https://github.com/ergebnis/json-schema-validator.git", - "reference": "73f938f8995c6ad1e37d2c1dfeaa8336861f9db8" + "reference": "85f90c81f718aebba1d738800af83eeb447dc7ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/73f938f8995c6ad1e37d2c1dfeaa8336861f9db8", - "reference": "73f938f8995c6ad1e37d2c1dfeaa8336861f9db8", + "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/85f90c81f718aebba1d738800af83eeb447dc7ec", + "reference": "85f90c81f718aebba1d738800af83eeb447dc7ec", "shasum": "" }, "require": { "ergebnis/json": "^1.2.0", "ergebnis/json-pointer": "^3.4.0", "ext-json": "*", - "justinrainbow/json-schema": "^5.2.12", + "justinrainbow/json-schema": "^5.2.12 || ^6.0.0", "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" }, "require-dev": { - "ergebnis/data-provider": "^3.2.0", - "ergebnis/license": "^2.4.0", - "ergebnis/php-cs-fixer-config": "^6.36.0", - "ergebnis/phpunit-slow-test-detector": "^2.15.1", - "fakerphp/faker": "^1.23.1", + "ergebnis/composer-normalize": "^2.44.0", + "ergebnis/data-provider": "^3.3.0", + "ergebnis/license": "^2.5.0", + "ergebnis/php-cs-fixer-config": "^6.37.0", + "ergebnis/phpunit-slow-test-detector": "^2.16.1", + "fakerphp/faker": "^1.24.0", "infection/infection": "~0.26.6", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.10", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.1", "phpunit/phpunit": "^9.6.20", - "psalm/plugin-phpunit": "~0.19.0", - "rector/rector": "^1.2.5", - "vimeo/psalm": "^5.26.1" + "rector/rector": "^1.2.10" }, "type": "library", "extra": { + "branch-alias": { + "dev-main": "4.4-dev" + }, "composer-normalize": { "indent-size": 2, "indent-style": "space" @@ -14847,20 +14999,20 @@ "security": "https://github.com/ergebnis/json-schema-validator/blob/main/.github/SECURITY.md", "source": "https://github.com/ergebnis/json-schema-validator" }, - "time": "2024-09-27T15:16:33+00:00" + "time": "2024-11-18T06:32:28+00:00" }, { "name": "google/protobuf", - "version": "v4.28.3", + "version": "v4.29.2", "source": { "type": "git", "url": "https://github.com/protocolbuffers/protobuf-php.git", - "reference": "c5c311e0f3d89928251ac5a2f0e3db283612c100" + "reference": "79aa5014efeeec3d137df5cdb0ae2fc163953945" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/c5c311e0f3d89928251ac5a2f0e3db283612c100", - "reference": "c5c311e0f3d89928251ac5a2f0e3db283612c100", + "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/79aa5014efeeec3d137df5cdb0ae2fc163953945", + "reference": "79aa5014efeeec3d137df5cdb0ae2fc163953945", "shasum": "" }, "require": { @@ -14889,9 +15041,9 @@ "proto" ], "support": { - "source": "https://github.com/protocolbuffers/protobuf-php/tree/v4.28.3" + "source": "https://github.com/protocolbuffers/protobuf-php/tree/v4.29.2" }, - "time": "2024-10-22T22:27:17+00:00" + "time": "2024-12-18T14:11:12+00:00" }, { "name": "justinrainbow/json-schema", @@ -14960,23 +15112,23 @@ }, { "name": "localheinz/diff", - "version": "1.1.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/localheinz/diff.git", - "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c" + "reference": "ec413943c2b518464865673fd5b38f7df867a010" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/localheinz/diff/zipball/851bb20ea8358c86f677f5f111c4ab031b1c764c", - "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c", + "url": "https://api.github.com/repos/localheinz/diff/zipball/ec413943c2b518464865673fd5b38f7df867a010", + "reference": "ec413943c2b518464865673fd5b38f7df867a010", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" }, "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.0", + "phpunit/phpunit": "^7.5.0 || ^8.5.23", "symfony/process": "^4.2 || ^5" }, "type": "library", @@ -15008,15 +15160,10 @@ "unified diff" ], "support": { - "source": "https://github.com/localheinz/diff/tree/main" + "issues": "https://github.com/localheinz/diff/issues", + "source": "https://github.com/localheinz/diff/tree/1.2.0" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2020-07-06T04:49:32+00:00" + "time": "2024-12-04T14:16:01+00:00" }, { "name": "lullabot/mink-selenium2-driver", @@ -15140,16 +15287,16 @@ }, { "name": "mglaman/phpstan-drupal", - "version": "1.3.1", + "version": "1.3.2", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "2bc25a59b53c8f3990f168efd71241d9c25ea0c3" + "reference": "bbb92dee546da3988da851122cb2925f72c149f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/2bc25a59b53c8f3990f168efd71241d9c25ea0c3", - "reference": "2bc25a59b53c8f3990f168efd71241d9c25ea0c3", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/bbb92dee546da3988da851122cb2925f72c149f3", + "reference": "bbb92dee546da3988da851122cb2925f72c149f3", "shasum": "" }, "require": { @@ -15179,6 +15326,12 @@ }, "type": "phpstan-extension", "extra": { + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" + ] + }, "branch-alias": { "dev-main": "1.0-dev" }, @@ -15189,20 +15342,14 @@ "tests/fixtures/drupal/libraries/{$name}": [ "type:drupal-library" ], + "tests/fixtures/drupal/themes/contrib/{$name}": [ + "type:drupal-theme" + ], "tests/fixtures/drupal/modules/contrib/{$name}": [ "type:drupal-module" ], "tests/fixtures/drupal/profiles/contrib/{$name}": [ "type:drupal-profile" - ], - "tests/fixtures/drupal/themes/contrib/{$name}": [ - "type:drupal-theme" - ] - }, - "phpstan": { - "includes": [ - "extension.neon", - "rules.neon" ] } }, @@ -15224,7 +15371,7 @@ "description": "Drupal extension and rules for PHPStan", "support": { "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/1.3.1" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.3.2" }, "funding": [ { @@ -15240,7 +15387,7 @@ "type": "tidelift" } ], - "time": "2024-09-27T08:54:16+00:00" + "time": "2024-11-19T15:26:05+00:00" }, { "name": "micheh/phpcs-gitlab", @@ -15474,16 +15621,16 @@ }, { "name": "open-telemetry/api", - "version": "1.1.1", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/opentelemetry-php/api.git", - "reference": "542064815d38a6df55af7957cd6f1d7d967c99c6" + "reference": "04c85a1e41a3d59fa9bdc801a5de1df6624b95ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/542064815d38a6df55af7957cd6f1d7d967c99c6", - "reference": "542064815d38a6df55af7957cd6f1d7d967c99c6", + "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/04c85a1e41a3d59fa9bdc801a5de1df6624b95ed", + "reference": "04c85a1e41a3d59fa9bdc801a5de1df6624b95ed", "shasum": "" }, "require": { @@ -15497,13 +15644,13 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.1.x-dev" - }, "spi": { "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\HookManagerInterface": [ "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\ExtensionHookManager" ] + }, + "branch-alias": { + "dev-main": "1.1.x-dev" } }, "autoload": { @@ -15540,7 +15687,7 @@ "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", "source": "https://github.com/open-telemetry/opentelemetry-php" }, - "time": "2024-10-15T22:42:37+00:00" + "time": "2024-11-16T04:32:30+00:00" }, { "name": "open-telemetry/context", @@ -15767,13 +15914,13 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.0.x-dev" - }, "spi": { "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\HookManagerInterface": [ "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\ExtensionHookManager" ] + }, + "branch-alias": { + "dev-main": "1.0.x-dev" } }, "autoload": { @@ -16127,16 +16274,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.6.0", + "version": "5.6.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "f3558a4c23426d12bffeaab463f8a8d8b681193c" + "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/f3558a4c23426d12bffeaab463f8a8d8b681193c", - "reference": "f3558a4c23426d12bffeaab463f8a8d8b681193c", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8", + "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8", "shasum": "" }, "require": { @@ -16185,9 +16332,9 @@ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.0" + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1" }, - "time": "2024-11-12T11:25:25+00:00" + "time": "2024-12-07T09:39:29+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -16249,26 +16396,27 @@ }, { "name": "phpspec/prophecy", - "version": "v1.19.0", + "version": "v1.20.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87" + "reference": "a0165c648cab6a80311c74ffc708a07bb53ecc93" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/67a759e7d8746d501c41536ba40cd9c0a07d6a87", - "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/a0165c648cab6a80311c74ffc708a07bb53ecc93", + "reference": "a0165c648cab6a80311c74ffc708a07bb53ecc93", "shasum": "" }, "require": { "doctrine/instantiator": "^1.2 || ^2.0", - "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.*", + "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.* || 8.4.*", "phpdocumentor/reflection-docblock": "^5.2", "sebastian/comparator": "^3.0 || ^4.0 || ^5.0 || ^6.0", "sebastian/recursion-context": "^3.0 || ^4.0 || ^5.0 || ^6.0" }, "require-dev": { + "friendsofphp/php-cs-fixer": "^3.40", "phpspec/phpspec": "^6.0 || ^7.0", "phpstan/phpstan": "^1.9", "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0" @@ -16312,22 +16460,22 @@ ], "support": { "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/v1.19.0" + "source": "https://github.com/phpspec/prophecy/tree/v1.20.0" }, - "time": "2024-02-29T11:52:51+00:00" + "time": "2024-11-19T13:12:41+00:00" }, { "name": "phpspec/prophecy-phpunit", - "version": "v2.2.0", + "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy-phpunit.git", - "reference": "16e1247e139434bce0bac09848bc5c8d882940fc" + "reference": "8819516c1b489ecee4c60db5f5432fac1ea8ac6f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/16e1247e139434bce0bac09848bc5c8d882940fc", - "reference": "16e1247e139434bce0bac09848bc5c8d882940fc", + "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/8819516c1b489ecee4c60db5f5432fac1ea8ac6f", + "reference": "8819516c1b489ecee4c60db5f5432fac1ea8ac6f", "shasum": "" }, "require": { @@ -16335,6 +16483,9 @@ "phpspec/prophecy": "^1.18", "phpunit/phpunit": "^9.1 || ^10.1 || ^11.0" }, + "require-dev": { + "phpstan/phpstan": "^1.10" + }, "type": "library", "extra": { "branch-alias": { @@ -16364,9 +16515,9 @@ ], "support": { "issues": "https://github.com/phpspec/prophecy-phpunit/issues", - "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.2.0" + "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.3.0" }, - "time": "2024-03-01T08:33:58+00:00" + "time": "2024-11-19T13:24:17+00:00" }, { "name": "phpstan/extension-installer", @@ -16418,16 +16569,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.10", + "version": "1.12.15", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071" + "reference": "c91d4e8bc056f46cf653656e6f71004b254574d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fc463b5d0fe906dcf19689be692c65c50406a071", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/c91d4e8bc056f46cf653656e6f71004b254574d1", + "reference": "c91d4e8bc056f46cf653656e6f71004b254574d1", "shasum": "" }, "require": { @@ -16472,7 +16623,7 @@ "type": "github" } ], - "time": "2024-11-11T15:37:09+00:00" + "time": "2025-01-05T16:40:22+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", @@ -16523,16 +16674,16 @@ }, { "name": "phpstan/phpstan-phpunit", - "version": "1.4.1", + "version": "1.4.2", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-phpunit.git", - "reference": "11d4235fbc6313ecbf93708606edfd3222e44949" + "reference": "72a6721c9b64b3e4c9db55abbc38f790b318267e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/11d4235fbc6313ecbf93708606edfd3222e44949", - "reference": "11d4235fbc6313ecbf93708606edfd3222e44949", + "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/72a6721c9b64b3e4c9db55abbc38f790b318267e", + "reference": "72a6721c9b64b3e4c9db55abbc38f790b318267e", "shasum": "" }, "require": { @@ -16569,9 +16720,9 @@ "description": "PHPUnit extensions and rules for PHPStan", "support": { "issues": "https://github.com/phpstan/phpstan-phpunit/issues", - "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.4.1" + "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.4.2" }, - "time": "2024-11-12T12:43:59+00:00" + "time": "2024-12-17T17:20:49+00:00" }, { "name": "phpunit/php-code-coverage", @@ -16894,16 +17045,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.21", + "version": "9.6.22", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa" + "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa", - "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c", + "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c", "shasum": "" }, "require": { @@ -16914,7 +17065,7 @@ "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.12.0", + "myclabs/deep-copy": "^1.12.1", "phar-io/manifest": "^2.0.4", "phar-io/version": "^3.2.1", "php": ">=7.3", @@ -16977,7 +17128,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22" }, "funding": [ { @@ -16993,7 +17144,7 @@ "type": "tidelift" } ], - "time": "2024-09-19T10:50:18+00:00" + "time": "2024-12-05T13:48:26+00:00" }, { "name": "ramsey/collection", @@ -18321,16 +18472,16 @@ }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.19", + "version": "v2.11.22", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1" + "reference": "ffb6f16c6033ec61ed84446b479a31d6529f0eb7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", - "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/ffb6f16c6033ec61ed84446b479a31d6529f0eb7", + "reference": "ffb6f16c6033ec61ed84446b479a31d6529f0eb7", "shasum": "" }, "require": { @@ -18341,9 +18492,8 @@ "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", "phpcsstandards/phpcsdevcs": "^1.1", "phpstan/phpstan": "^1.7", - "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", - "sirbrillig/phpcs-import-detection": "^1.1", - "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3", + "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0" }, "type": "phpcodesniffer-standard", "autoload": { @@ -18375,37 +18525,38 @@ "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2024-06-26T20:08:34+00:00" + "time": "2025-01-06T17:54:24+00:00" }, { "name": "slevomat/coding-standard", - "version": "8.15.0", + "version": "dev-master", "source": { "type": "git", "url": "https://github.com/slevomat/coding-standard.git", - "reference": "7d1d957421618a3803b593ec31ace470177d7817" + "reference": "aa0cfc97697752aaef0fb0e32b26a378cdc3cbaa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/7d1d957421618a3803b593ec31ace470177d7817", - "reference": "7d1d957421618a3803b593ec31ace470177d7817", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/aa0cfc97697752aaef0fb0e32b26a378cdc3cbaa", + "reference": "aa0cfc97697752aaef0fb0e32b26a378cdc3cbaa", "shasum": "" }, "require": { "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0", - "php": "^7.2 || ^8.0", - "phpstan/phpdoc-parser": "^1.23.1", - "squizlabs/php_codesniffer": "^3.9.0" + "php": "^7.4 || ^8.0", + "phpstan/phpdoc-parser": "^2.0", + "squizlabs/php_codesniffer": "^3.10.0" }, "require-dev": { - "phing/phing": "2.17.4", - "php-parallel-lint/php-parallel-lint": "1.3.2", - "phpstan/phpstan": "1.10.60", - "phpstan/phpstan-deprecation-rules": "1.1.4", - "phpstan/phpstan-phpunit": "1.3.16", - "phpstan/phpstan-strict-rules": "1.5.2", - "phpunit/phpunit": "8.5.21|9.6.8|10.5.11" + "phing/phing": "3.0.0", + "php-parallel-lint/php-parallel-lint": "1.4.0", + "phpstan/phpstan": "1.12.8", + "phpstan/phpstan-deprecation-rules": "1.2.1", + "phpstan/phpstan-phpunit": "1.4.0", + "phpstan/phpstan-strict-rules": "1.6.1", + "phpunit/phpunit": "9.6.8|10.5.38|11.4.3" }, + "default-branch": true, "type": "phpcodesniffer-standard", "extra": { "branch-alias": { @@ -18428,7 +18579,7 @@ ], "support": { "issues": "https://github.com/slevomat/coding-standard/issues", - "source": "https://github.com/slevomat/coding-standard/tree/8.15.0" + "source": "https://github.com/slevomat/coding-standard/tree/master" }, "funding": [ { @@ -18440,20 +18591,20 @@ "type": "tidelift" } ], - "time": "2024-03-09T15:20:58+00:00" + "time": "2025-01-01T11:50:19+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.11.0", + "version": "3.11.2", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "70c08f8d20c0eb4fe56f26644dd94dae76a7f450" + "reference": "1368f4a58c3c52114b86b1abe8f4098869cb0079" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/70c08f8d20c0eb4fe56f26644dd94dae76a7f450", - "reference": "70c08f8d20c0eb4fe56f26644dd94dae76a7f450", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/1368f4a58c3c52114b86b1abe8f4098869cb0079", + "reference": "1368f4a58c3c52114b86b1abe8f4098869cb0079", "shasum": "" }, "require": { @@ -18520,7 +18671,7 @@ "type": "open_collective" } ], - "time": "2024-11-12T09:53:29+00:00" + "time": "2024-12-11T16:04:26+00:00" }, { "name": "symfony/browser-kit", @@ -18592,16 +18743,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v6.4.13", + "version": "v6.4.16", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "ae074dffb018c37a57071990d16e6152728dd972" + "reference": "4304e6ad5c894a9c72831ad459f627bfd35d766d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ae074dffb018c37a57071990d16e6152728dd972", - "reference": "ae074dffb018c37a57071990d16e6152728dd972", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4304e6ad5c894a9c72831ad459f627bfd35d766d", + "reference": "4304e6ad5c894a9c72831ad459f627bfd35d766d", "shasum": "" }, "require": { @@ -18639,7 +18790,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v6.4.13" + "source": "https://github.com/symfony/dom-crawler/tree/v6.4.16" }, "funding": [ { @@ -18655,7 +18806,7 @@ "type": "tidelift" } ], - "time": "2024-10-25T15:07:50+00:00" + "time": "2024-11-13T15:06:22+00:00" }, { "name": "symfony/lock", @@ -18738,16 +18889,16 @@ }, { "name": "symfony/phpunit-bridge", - "version": "v6.4.13", + "version": "v6.4.16", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "e6377bea5b114f70de6332fe935e160da5014ce8" + "reference": "cebafe2f1ad2d1e745c1015b7c2519592341e4e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e6377bea5b114f70de6332fe935e160da5014ce8", - "reference": "e6377bea5b114f70de6332fe935e160da5014ce8", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cebafe2f1ad2d1e745c1015b7c2519592341e4e6", + "reference": "cebafe2f1ad2d1e745c1015b7c2519592341e4e6", "shasum": "" }, "require": { @@ -18767,8 +18918,8 @@ "type": "symfony-bridge", "extra": { "thanks": { - "name": "phpunit/phpunit", - "url": "https://github.com/sebastianbergmann/phpunit" + "url": "https://github.com/sebastianbergmann/phpunit", + "name": "phpunit/phpunit" } }, "autoload": { @@ -18800,7 +18951,7 @@ "description": "Provides utilities for PHPUnit, especially user deprecation notices management", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.13" + "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.16" }, "funding": [ { @@ -18816,7 +18967,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:18:03+00:00" + "time": "2024-11-13T15:06:22+00:00" }, { "name": "symfony/polyfill-php82", @@ -18838,8 +18989,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -18921,10 +19072,10 @@ }, "type": "composer-plugin", "extra": { + "class": "Nevay\\SPI\\Composer\\Plugin", "branch-alias": { "dev-main": "0.2.x-dev" }, - "class": "Nevay\\SPI\\Composer\\Plugin", "plugin-optional": true }, "autoload": { @@ -19140,6 +19291,7 @@ "stability-flags": { "bower-asset/jqueryui-touch-punch": 20, "chx/drupal-issue-fork": 20, + "drupal/content_fixtures": 20, "drupal/email_registration": 5, "drupal/entityqueue": 15, "drupal/flag": 15, diff --git a/docker-compose.oidc.yml b/docker-compose.oidc.yml new file mode 100644 index 000000000..24346e6c5 --- /dev/null +++ b/docker-compose.oidc.yml @@ -0,0 +1,321 @@ +services: + # https://github.com/Soluto/oidc-server-mock + idp-citizen: + image: ghcr.io/soluto/oidc-server-mock:latest + profiles: + - oidc + - test + # Let this container be accessible both internally and externally on the same domain. + container_name: idp-citizen.${COMPOSE_DOMAIN} + networks: + - app + - frontend + ports: + - '80' + volumes: + - .:/tmp/config:ro + labels: + - "traefik.enable=true" + - "traefik.docker.network=frontend" + - "traefik.http.routers.${COMPOSE_PROJECT_NAME}_idp-citizen.rule=Host(`idp-citizen.${COMPOSE_DOMAIN}`)" + - "traefik.http.services.${COMPOSE_PROJECT_NAME}_idp-citizen.loadbalancer.server.port=443" + - "traefik.http.services.${COMPOSE_PROJECT_NAME}_idp-citizen.loadbalancer.server.scheme=https" + - "traefik.http.routers.${COMPOSE_PROJECT_NAME}_idp-citizen.middlewares=redirect-to-https" + - "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https" + environment: + # https://github.com/Soluto/oidc-server-mock?tab=readme-ov-file#https + ASPNETCORE_URLS: https://+:443;http://+:80 + ASPNETCORE_Kestrel__Certificates__Default__Password: mock + ASPNETCORE_Kestrel__Certificates__Default__Path: /tmp/config/.docker/oidc-server-mock/cert/docker.pfx + + ASPNETCORE_ENVIRONMENT: Development + SERVER_OPTIONS_INLINE: | + AccessTokenJwtType: JWT + Discovery: + ShowKeySet: true + Authentication: + CookieSameSiteMode: Lax + CheckSessionCookieSameSiteMode: Lax + + LOGIN_OPTIONS_INLINE: | + { + "AllowRememberLogin": false + } + + LOGOUT_OPTIONS_INLINE: | + { + "AutomaticRedirectAfterSignOut": true + } + + CLIENTS_CONFIGURATION_INLINE: | + - ClientId: client-id + ClientSecrets: [client-secret] + Description: Mock IdP + AllowedGrantTypes: + # - client_credentials + # - implicit + - authorization_code + # https://github.com/Soluto/oidc-server-mock/issues/46#issuecomment-704963181 + RequireClientSecret: false + AllowAccessTokensViaBrowser: true + # https://github.com/Soluto/oidc-server-mock/issues/26#issuecomment-705022941 + AlwaysIncludeUserClaimsInIdToken: true + AllowedScopes: + - openid + - profile + - email + ClientClaimsPrefix: '' + RedirectUris: + - '*' + # https://github.com/Soluto/oidc-server-mock/issues/60 + PostLogoutRedirectUris: + - '*' + # https://github.com/Soluto/oidc-server-mock/issues/46#issuecomment-704845375 + RequirePkce: false + + # Needed to set custom claim types in "profile" + # https://github.com/Soluto/oidc-server-mock/issues/123#issuecomment-1427129278 + # https://github.com/Soluto/oidc-server-mock/blob/master/README.md#simple-configuration + # https://docs.docker.com/compose/compose-file/compose-file-v3/#environment + OVERRIDE_STANDARD_IDENTITY_RESOURCES: 'true' + IDENTITY_RESOURCES_INLINE: | + # https://auth0.com/docs/get-started/apis/scopes/openid-connect-scopes#standard-claims + - Name: openid + ClaimTypes: + - sub + - Name: email + ClaimTypes: + - email + - Name: profile + ClaimTypes: + # Add your custom claims here + - dk_ssn + - name + - zip + + USERS_CONFIGURATION_INLINE: | + - SubjectId: 1 + Username: citizen1 + Password: citizen1 + Claims: + # Claims added here must be defined above in IDENTITY_RESOURCES_INLINE + - Type: dk_ssn + Value: '1111111111' + ValueType: string + - Type: name + Value: 'Anders And' + ValueType: string + - Type: zip + Value: '1111' + ValueType: string + + - SubjectId: 2 + Username: citizen2 + Password: citizen2 + Claims: + - Type: dk_ssn + Value: '2222222222' + ValueType: string + - Type: name + Value: 'Bent Betjentsen' + ValueType: string + - Type: zip + Value: '2222' + ValueType: string + + - SubjectId: 3 + Username: citizen3 + Password: citizen3 + Claims: + - Type: dk_ssn + Value: '3333333333' + ValueType: string + - Type: name + Value: 'Carsten Carlsen' + ValueType: string + - Type: zip + Value: '3333' + ValueType: string + + - SubjectId: 4 + Username: citizen4 + Password: citizen4 + Claims: + - Type: dk_ssn + Value: '4444444444' + ValueType: string + - Type: name + Value: 'Dorte Dyhr' + ValueType: string + - Type: zip + Value: '4444' + ValueType: string + + - SubjectId: 'ikke-aarhusianer' + Username: 'ikke-aarhusianer' + Password: 'ikke-aarhusianer' + Claims: + - Type: dk_ssn + Value: '1705880000' + ValueType: string + - Type: name + Value: Troels Bondetest + ValueType: string + + - SubjectId: 'aarhusianer' + Username: 'aarhusianer' + Password: 'aarhusianer' + Claims: + - Type: dk_ssn + Value: '2611740000' + ValueType: string + - Type: name + Value: Betina Henningsentest + ValueType: string + + # https://github.com/Soluto/oidc-server-mock + idp-employee: + image: ghcr.io/soluto/oidc-server-mock:latest + profiles: + - oidc + - test + # Let this container be accessible both internally and externally on the same domain. + container_name: idp-employee.${COMPOSE_DOMAIN} + networks: + - app + - frontend + ports: + - '80' + volumes: + - .:/tmp/config:ro + labels: + - "traefik.enable=true" + - "traefik.docker.network=frontend" + - "traefik.http.routers.${COMPOSE_PROJECT_NAME}_idp-employee.rule=Host(`idp-employee.${COMPOSE_DOMAIN}`)" + - "traefik.http.services.${COMPOSE_PROJECT_NAME}_idp-employee.loadbalancer.server.port=443" + - "traefik.http.services.${COMPOSE_PROJECT_NAME}_idp-employee.loadbalancer.server.scheme=https" + - "traefik.http.routers.${COMPOSE_PROJECT_NAME}_idp-employee.middlewares=redirect-to-https" + - "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https" + environment: + # https://github.com/Soluto/oidc-server-mock?tab=readme-ov-file#https + ASPNETCORE_URLS: https://+:443;http://+:80 + ASPNETCORE_Kestrel__Certificates__Default__Password: mock + ASPNETCORE_Kestrel__Certificates__Default__Path: /tmp/config/.docker/oidc-server-mock/cert/docker.pfx + + ASPNETCORE_ENVIRONMENT: Development + SERVER_OPTIONS_INLINE: | + AccessTokenJwtType: JWT + Discovery: + ShowKeySet: true + Authentication: + CookieSameSiteMode: Lax + CheckSessionCookieSameSiteMode: Lax + + LOGIN_OPTIONS_INLINE: | + { + "AllowRememberLogin": false + } + + LOGOUT_OPTIONS_INLINE: | + { + "AutomaticRedirectAfterSignOut": true + } + + CLIENTS_CONFIGURATION_INLINE: | + - ClientId: client-id + ClientSecrets: [client-secret] + Description: Mock IdP + AllowedGrantTypes: + # - client_credentials + # - implicit + - authorization_code + # https://github.com/Soluto/oidc-server-mock/issues/46#issuecomment-704963181 + RequireClientSecret: false + AllowAccessTokensViaBrowser: true + # https://github.com/Soluto/oidc-server-mock/issues/26#issuecomment-705022941 + AlwaysIncludeUserClaimsInIdToken: true + AllowedScopes: + - openid + - profile + - email + ClientClaimsPrefix: '' + RedirectUris: + - '*' + # https://github.com/Soluto/oidc-server-mock/issues/60 + PostLogoutRedirectUris: + - '*' + # https://github.com/Soluto/oidc-server-mock/issues/46#issuecomment-704845375 + RequirePkce: false + + # Needed to set custom claim types in "profile" + # https://github.com/Soluto/oidc-server-mock/issues/123#issuecomment-1427129278 + # https://github.com/Soluto/oidc-server-mock/blob/master/README.md#simple-configuration + # https://docs.docker.com/compose/compose-file/compose-file-v3/#environment + OVERRIDE_STANDARD_IDENTITY_RESOURCES: 'true' + IDENTITY_RESOURCES_INLINE: | + # https://auth0.com/docs/get-started/apis/scopes/openid-connect-scopes#standard-claims + - Name: openid + ClaimTypes: + - sub + - Name: email + ClaimTypes: + - email + - Name: profile + ClaimTypes: + # Add your custom claims here + - name + - groups + - magistratsafdeling + + USERS_CONFIGURATION_INLINE: | + - SubjectId: 1 + Username: department1-editor + Password: department1-editor + Claims: + # Claims added here must be defined above in IDENTITY_RESOURCES_INLINE + - Type: email + Value: 'department1-editor@example.com' + ValueType: string + - Type: name + Value: 'department1-editor' + ValueType: string + - Type: magistratsafdeling + Value: 'Department 1' + ValueType: string + - Type: groups + Value: '["administrator"]' + ValueType: json + + - SubjectId: 2 + Username: department2-editor + Password: department2-editor + Claims: + - Type: email + Value: 'department2-editor@example.com' + ValueType: string + - Type: name + Value: 'department2-editor' + ValueType: string + - Type: magistratsafdeling + Value: 'Department 2' + ValueType: string + - Type: groups + Value: '["editor"]' + ValueType: json + + - SubjectId: 3 + Username: department3-editor + Password: department3-editor + Claims: + - Type: email + Value: 'department3-editor@example.com' + ValueType: string + - Type: name + Value: 'department3-editor' + ValueType: string + - Type: magistratsafdeling + Value: 'Department 3' + ValueType: string + - Type: groups + Value: '["editor"]' + ValueType: json diff --git a/docker-compose.override.yml b/docker-compose.override.yml index a67864aef..b37f6b6b5 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -1,7 +1,7 @@ -networks: - pretix: - driver: bridge - internal: false +include: + - docker-compose.oidc.yml + - docker-compose.playwright.yml + - docker-compose.pretix.yml services: node: @@ -19,232 +19,3 @@ services: ports: - '3310' - '7357' - - playwright: - # https://playwright.dev/docs/docker - # This Playwright version should match the one in `package.json`. - image: mcr.microsoft.com/playwright:v1.35.0-jammy - profiles: - - test - networks: - - app - depends_on: - - nginx - volumes: - - .:/app - - /tmp/.X11-unix:/tmp/.X11-unix - working_dir: /app - - # https://github.com/Soluto/oidc-server-mock - idp-citizen: - image: ghcr.io/soluto/oidc-server-mock:latest - profiles: - - oidc - - test - # Let this container be accessible both internally and externally on the same domain. - container_name: idp-citizen.${COMPOSE_DOMAIN} - networks: - - app - - frontend - ports: - - '80' - volumes: - - .:/tmp/config:ro - labels: - - "traefik.enable=true" - - "traefik.docker.network=frontend" - - "traefik.http.routers.${COMPOSE_PROJECT_NAME}_idp-citizen.rule=Host(`idp-citizen.${COMPOSE_DOMAIN}`)" - - "traefik.http.services.${COMPOSE_PROJECT_NAME}_idp-citizen.loadbalancer.server.port=80" - environment: - ASPNETCORE_ENVIRONMENT: Development - SERVER_OPTIONS_INLINE: | - AccessTokenJwtType: JWT - Discovery: - ShowKeySet: true - Authentication: - CookieSameSiteMode: Lax - CheckSessionCookieSameSiteMode: Lax - - LOGIN_OPTIONS_INLINE: | - { - "AllowRememberLogin": false - } - - LOGOUT_OPTIONS_INLINE: | - { - "AutomaticRedirectAfterSignOut": true - } - - CLIENTS_CONFIGURATION_INLINE: | - - ClientId: client-id - ClientSecrets: [client-secret] - Description: Mock IdP - AllowedGrantTypes: - # - client_credentials - # - implicit - - authorization_code - # https://github.com/Soluto/oidc-server-mock/issues/46#issuecomment-704963181 - RequireClientSecret: false - AllowAccessTokensViaBrowser: true - # https://github.com/Soluto/oidc-server-mock/issues/26#issuecomment-705022941 - AlwaysIncludeUserClaimsInIdToken: true - AllowedScopes: - - openid - - profile - - email - ClientClaimsPrefix: '' - RedirectUris: - - '*' - # https://github.com/Soluto/oidc-server-mock/issues/60 - PostLogoutRedirectUris: - - '*' - # https://github.com/Soluto/oidc-server-mock/issues/46#issuecomment-704845375 - RequirePkce: false - - # Needed to set custom claim types in "profile" - # https://github.com/Soluto/oidc-server-mock/issues/123#issuecomment-1427129278 - # https://github.com/Soluto/oidc-server-mock/blob/master/README.md#simple-configuration - # https://docs.docker.com/compose/compose-file/compose-file-v3/#environment - OVERRIDE_STANDARD_IDENTITY_RESOURCES: 'true' - IDENTITY_RESOURCES_INLINE: | - # https://auth0.com/docs/get-started/apis/scopes/openid-connect-scopes#standard-claims - - Name: openid - ClaimTypes: - - sub - - Name: email - ClaimTypes: - - email - - Name: profile - ClaimTypes: - # Add your custom claims here - - dk_ssn - - name - - zip - - USERS_CONFIGURATION_INLINE: | - - SubjectId: 1 - Username: citizen1 - Password: citizen1 - Claims: - # Claims added here must be defined above in IDENTITY_RESOURCES_INLINE - - Type: dk_ssn - Value: '1111111111' - ValueType: string - - Type: name - Value: 'Anders And' - ValueType: string - - Type: zip - Value: '1111' - ValueType: string - - - SubjectId: 2 - Username: citizen2 - Password: citizen2 - Claims: - - Type: dk_ssn - Value: '2222222222' - ValueType: string - - Type: name - Value: 'Bent Betjentsen' - ValueType: string - - Type: zip - Value: '2222' - ValueType: string - - - SubjectId: 3 - Username: citizen3 - Password: citizen3 - Claims: - - Type: dk_ssn - Value: '3333333333' - ValueType: string - - Type: name - Value: 'Carsten Carlsen' - ValueType: string - - Type: zip - Value: '3333' - ValueType: string - - - SubjectId: 4 - Username: citizen4 - Password: citizen4 - Claims: - - Type: dk_ssn - Value: '4444444444' - ValueType: string - - Type: name - Value: 'Dorte Dyhr' - ValueType: string - - Type: zip - Value: '4444' - ValueType: string - - - SubjectId: 'ikke-aarhusianer' - Username: 'ikke-aarhusianer' - Password: 'ikke-aarhusianer' - Claims: - - Type: dk_ssn - Value: '1705880000' - ValueType: string - - Type: name - Value: Troels Bondetest - ValueType: string - - - SubjectId: 'aarhusianer' - Username: 'aarhusianer' - Password: 'aarhusianer' - Claims: - - Type: dk_ssn - Value: '2611740000' - ValueType: string - - Type: name - Value: Betina Henningsentest - ValueType: string - - pretix: - image: pretix/standalone:latest - profiles: - - pretix - networks: - - app - - pretix - - frontend - depends_on: - - pretix_database - - pretix_redis - ports: - - '80' - volumes: - - ${PWD}/.docker/pretix/etc/pretix.cfg:/etc/pretix/pretix.cfg - - # Let the pretix container be accessible both internally and externally on the same domain. - container_name: pretix.${COMPOSE_DOMAIN} - labels: - - "traefik.enable=true" - - "traefik.docker.network=frontend" - - "traefik.http.routers.${COMPOSE_PROJECT_NAME}_pretix.rule=Host(`pretix.${COMPOSE_DOMAIN}`)" - - pretix_database: - image: mariadb:10.3 - profiles: - - pretix - networks: - - pretix - ports: - - '3306' - volumes: - - .docker/pretix/dumps:/docker-entrypoint-initdb.d - environment: - MYSQL_ROOT_PASSWORD: password - MYSQL_USER: pretix - MYSQL_PASSWORD: pretix - MYSQL_DATABASE: pretix - - pretix_redis: - image: redis:latest - profiles: - - pretix - networks: - - pretix - ports: - - "6379" diff --git a/docker-compose.playwright.yml b/docker-compose.playwright.yml new file mode 100644 index 000000000..8e3cb2466 --- /dev/null +++ b/docker-compose.playwright.yml @@ -0,0 +1,15 @@ +services: + playwright: + # https://playwright.dev/docs/docker + # This Playwright version should match the one in `package.json`. + image: mcr.microsoft.com/playwright:v1.35.0-jammy + profiles: + - test + networks: + - app + depends_on: + - nginx + volumes: + - .:/app + - /tmp/.X11-unix:/tmp/.X11-unix + working_dir: /app diff --git a/docker-compose.pretix.yml b/docker-compose.pretix.yml new file mode 100644 index 000000000..5e29d4b94 --- /dev/null +++ b/docker-compose.pretix.yml @@ -0,0 +1,53 @@ +networks: + pretix: + driver: bridge + internal: false + +services: + pretix: + image: pretix/standalone:latest + profiles: + - pretix + networks: + - app + - pretix + - frontend + depends_on: + - pretix_database + - pretix_redis + ports: + - '80' + volumes: + - ${PWD}/.docker/pretix/etc/pretix.cfg:/etc/pretix/pretix.cfg + + # Let the pretix container be accessible both internally and externally on the same domain. + container_name: pretix.${COMPOSE_DOMAIN} + labels: + - "traefik.enable=true" + - "traefik.docker.network=frontend" + - "traefik.http.routers.${COMPOSE_PROJECT_NAME}_pretix.rule=Host(`pretix.${COMPOSE_DOMAIN}`)" + + pretix_database: + # https://hub.docker.com/_/postgres + image: postgres + profiles: + - pretix + networks: + - pretix + ports: + - '3306' + volumes: + - .docker/pretix/dumps:/docker-entrypoint-initdb.d + environment: + - POSTGRES_USER=pretix + - POSTGRES_PASSWORD=pretix + - POSTGRES_DATABASE=pretix + + pretix_redis: + image: redis:latest + profiles: + - pretix + networks: + - pretix + ports: + - "6379" diff --git a/documentation/openIdConnect.md b/documentation/openIdConnect.md index 22433098c..44b624338 100644 --- a/documentation/openIdConnect.md +++ b/documentation/openIdConnect.md @@ -25,8 +25,8 @@ Use `drush` to check your actual configuration (with `--include-overridden` to include your config from `settings.local.php`): ```sh -docker-compose exec phpfpm vendor/bin/drush config:get --include-overridden openid_connect.client.generic -docker-compose exec phpfpm vendor/bin/drush config:get --include-overridden openid_connect.settings +docker compose exec phpfpm vendor/bin/drush config:get --include-overridden openid_connect.client.generic +docker compose exec phpfpm vendor/bin/drush config:get --include-overridden openid_connect.settings ``` ## Citizen authentification @@ -39,3 +39,45 @@ For local testing we use [OpenId Connect Server Mock](https://github.com/Soluto/oidc-server-mock) for (almost) real OpenID Connect. Users and their claims are defined in [`docker-compose.override.yml`](../../../../docker-compose.override.yml). + +## Employee authentification + +```php +# settings.local.php +$config['openid_connect.settings']['role_mappings']['administrator'][] = 'administrator'; +$config['openid_connect.settings']['role_mappings']['editor'][] = 'editor'; +``` + +Create department taxonomy terms: + +```shell +docker compose exec phpfpm vendor/bin/drush php:eval "\Drupal\taxonomy\Entity\Term::create(['name' => 'Department A', 'vid' => 'department', 'status' => 1])->save();" +docker compose exec phpfpm vendor/bin/drush php:eval "\Drupal\taxonomy\Entity\Term::create(['name' => 'Department B', 'vid' => 'department', 'status' => 1])->save();" +``` + +## Debugging OpenID Connect authentification + +```sh +docker compose --profile oidc up --detach +``` + +During development it can be useful to see the user info we actually get during +OpenID Connect authentification, and to do this you can apply the patch +[openid_connect-debug-userinfo.patch](../patches/openid_connect-debug-userinfo.patch): + +```sh +docker compose exec phpfpm patch --strip=1 --input=patches/openid_connect-debug-userinfo.patch +``` + +After applying the patch and succesfully logging in, the actual userinfo +received can be inspected with + +```sh +docker compose exec phpfpm vendor/bin/drush watchdog:show --type=itkdev-debug --extended +``` + +Remove (reverse) the patch with + +```sh +docker compose exec phpfpm patch --strip=1 --input=patches/openid_connect-debug-userinfo.patch --reverse +``` diff --git a/documentation/pretix.md b/documentation/pretix.md index 9346afd3a..1a7308a58 100644 --- a/documentation/pretix.md +++ b/documentation/pretix.md @@ -20,21 +20,25 @@ sign in with username `admin@localhost` and password `admin`. #### Resetting pretix database -```sh -gunzip < .docker/pretix/dumps/pretix.sql.gz | mysql --host=0.0.0.0 --port=$(docker-compose port pretix_database 3306 | awk -F: '{ print $2 }') --user=pretix --password=pretix pretix +```sh name=pretix-database-load +task pretix:database-load +``` + +```sh name=pretix-database-dump +task compose -- pull +task compose-up +task pretix:database-dump ``` ### Drupal build #### Connect Drupal to pretix -Add this to `settings.local.php` - -```sh -docker-compose exec phpfpm vendor/bin/drush --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig pretix_url 'http://pretix.hoeringsportal.local.itkdev.dk/' -docker-compose exec phpfpm vendor/bin/drush --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig organizer_slug 'hoeringsportal' -docker-compose exec phpfpm vendor/bin/drush --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig api_token 'v84pb9f19gv5gkn2d8vbxoih6egx2v00hpbcwzwzqoqqixt22locej5rffmou78e' -docker-compose exec phpfpm vendor/bin/drush --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig template_event_slugs 'template-series' +```sh name=pretix-configure-drupal +task drush -- config:set itk_pretix.pretixconfig pretix_url 'http://pretix.hoeringsportal.local.itkdev.dk/' +task drush -- config:set itk_pretix.pretixconfig organizer_slug 'hoeringsportal' +task drush -- config:set itk_pretix.pretixconfig api_token 'v84pb9f19gv5gkn2d8vbxoih6egx2v00hpbcwzwzqoqqixt22locej5rffmou78e' +task drush -- config:set itk_pretix.pretixconfig template_event_slugs 'template-series' ``` Go to @@ -43,7 +47,7 @@ more pretix configuration. ### API -```sh +``` sh name=pretix-api-get-organizers curl --header 'Authorization: Token v84pb9f19gv5gkn2d8vbxoih6egx2v00hpbcwzwzqoqqixt22locej5rffmou78e' \ http://pretix.hoeringsportal.local.itkdev.dk/api/v1/organizers/ ``` @@ -52,22 +56,22 @@ curl --header 'Authorization: Token v84pb9f19gv5gkn2d8vbxoih6egx2v00hpbcwzwzqoqq ```sh # Drupal setup -docker-compose exec phpfpm /app/vendor/bin/drush --root=/app/web --yes deploy -docker-compose exec phpfpm /app/vendor/bin/drush --root=/app/web --yes locale:update +docker compose exec phpfpm /app/vendor/bin/drush --root=/app/web --yes deploy +docker compose exec phpfpm /app/vendor/bin/drush --root=/app/web --yes locale:update -docker-compose exec phpfpm vendor/bin/drush --yes --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig pretix_url 'http://pretix.hoeringsportal.local.itkdev.dk/' -docker-compose exec phpfpm vendor/bin/drush --yes --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig organizer_slug 'hoeringsportal' -docker-compose exec phpfpm vendor/bin/drush --yes --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig api_token 'v84pb9f19gv5gkn2d8vbxoih6egx2v00hpbcwzwzqoqqixt22locej5rffmou78e' -docker-compose exec phpfpm vendor/bin/drush --yes --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig template_event_slugs 'template-series' +docker compose exec phpfpm vendor/bin/drush --yes --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig pretix_url 'http://pretix.hoeringsportal.local.itkdev.dk/' +docker compose exec phpfpm vendor/bin/drush --yes --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig organizer_slug 'hoeringsportal' +docker compose exec phpfpm vendor/bin/drush --yes --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig api_token 'v84pb9f19gv5gkn2d8vbxoih6egx2v00hpbcwzwzqoqqixt22locej5rffmou78e' +docker compose exec phpfpm vendor/bin/drush --yes --uri=http://hoeringsportal.local.itkdev.dk/ config:set itk_pretix.pretixconfig template_event_slugs 'template-series' -docker-compose exec phpfpm /app/vendor/bin/drush --root=/app/web --yes cache:rebuild +docker compose exec phpfpm /app/vendor/bin/drush --root=/app/web --yes cache:rebuild ``` ```sh # Pretix setup -docker-compose exec pretix python /pretix/src/manage.py migrate -docker-compose exec pretix python /pretix/src/manage.py compress -docker-compose exec pretix python /pretix/src/manage.py collectstatic --no-input +docker compose exec pretix python /pretix/src/manage.py migrate +docker compose exec pretix python /pretix/src/manage.py compress +docker compose exec pretix python /pretix/src/manage.py collectstatic --no-input # Dump the database -mysqldump --host=0.0.0.0 --port=$(docker-compose port pretix_database 3306 | awk -F: '{ print $2 }') --user=pretix --password=pretix pretix | gzip > .docker/pretix/dumps/pretix.sql.gz +mysqldump --host=0.0.0.0 --port=$(docker compose port pretix_database 3306 | awk -F: '{ print $2 }') --user=pretix --password=pretix pretix | gzip > .docker/pretix/dumps/pretix.sql.gz ``` diff --git a/patches/openid_connect-debug-userinfo.patch b/patches/openid_connect-debug-userinfo.patch new file mode 100644 index 000000000..0075db470 --- /dev/null +++ b/patches/openid_connect-debug-userinfo.patch @@ -0,0 +1,14 @@ +diff --git a/web/modules/contrib/openid_connect/src/OpenIDConnect.php b/web/modules/contrib/openid_connect/src/OpenIDConnect.php +index 8526e309..99cafbfe 100644 +--- a/web/modules/contrib/openid_connect/src/OpenIDConnect.php ++++ b/web/modules/contrib/openid_connect/src/OpenIDConnect.php +@@ -262,7 +262,9 @@ private function buildContext(OpenIDConnectClientEntityInterface $client, array + 'plugin_id' => $provider, + 'user_data' => $user_data, + ]; ++ \Drupal::logger('itkdev-debug')->debug('openid_connect_userinfo (before alter): %userinfo', ['%userinfo' => json_encode($userinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE)]); + $this->moduleHandler->alter('openid_connect_userinfo', $userinfo, $context); ++ \Drupal::logger('itkdev-debug')->debug('openid_connect_userinfo (after alter): %userinfo', ['%userinfo' => json_encode($userinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE)]); + + // Whether we have no usable user information. + if ((empty($user_data) || !is_array($user_data)) && empty($userinfo)) { diff --git a/web/modules/custom/hoeringsportal_citizen_proposal/composer.json b/web/modules/custom/hoeringsportal_citizen_proposal/composer.json index c0b706aa0..b13025f74 100644 --- a/web/modules/custom/hoeringsportal_citizen_proposal/composer.json +++ b/web/modules/custom/hoeringsportal_citizen_proposal/composer.json @@ -15,14 +15,7 @@ "require": { "drupal/entity_events": "^2.0", "drupal/symfony_mailer": "^1.3", - "drush/drush": "^12", + "drush/drush": "^13", "itk-dev/serviceplatformen": "^1.5" - }, - "extra": { - "drush": { - "services": { - "drush.services.yml": "^12" - } - } } } diff --git a/web/modules/custom/hoeringsportal_citizen_proposal_archiving/composer.json b/web/modules/custom/hoeringsportal_citizen_proposal_archiving/composer.json index d23800c5d..82f4fc1c3 100644 --- a/web/modules/custom/hoeringsportal_citizen_proposal_archiving/composer.json +++ b/web/modules/custom/hoeringsportal_citizen_proposal_archiving/composer.json @@ -16,15 +16,8 @@ "drupal/entity_events": "^2.0", "symfony/options-resolver": "^5.0", "itk-dev/getorganized-api-client-php": "^1.2", - "drush/drush": "^12", + "drush/drush": "^13", "dompdf/dompdf": "^2.0", "drupal/pluginformalter": "^1.5" - }, - "extra": { - "drush": { - "services": { - "drush.services.yml": "^12" - } - } } }