diff --git a/app/api/contact/route.ts b/app/api/contact/route.ts index 108507b..7a2df0d 100644 --- a/app/api/contact/route.ts +++ b/app/api/contact/route.ts @@ -47,7 +47,14 @@ export async function POST(req: Request) { logger.info("Contact submission saved to Directus"); directusSaved = true; } catch (directusError) { - logger.error("Failed to save to Directus", { error: directusError }); + const errorMessage = + directusError instanceof Error + ? directusError.message + : String(directusError); + logger.error("Failed to save to Directus", { + error: errorMessage, + details: directusError, + }); services.errors.captureException(directusError, { phase: "directus_save", }); diff --git a/dump.sql b/dump.sql deleted file mode 100644 index a4cf2e7..0000000 --- a/dump.sql +++ /dev/null @@ -1,2017 +0,0 @@ --- --- PostgreSQL database dump --- - -\restrict CbprhGcTL0byLeqVbuTsFhBReWMe8OyOY53RONJHhoY17zx1fVVjxl30zrOpqe6 - --- Dumped from database version 15.15 --- Dumped by pg_dump version 15.15 - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - -ALTER TABLE IF EXISTS ONLY public.directus_versions DROP CONSTRAINT IF EXISTS directus_versions_user_updated_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_versions DROP CONSTRAINT IF EXISTS directus_versions_user_created_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_versions DROP CONSTRAINT IF EXISTS directus_versions_collection_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_users DROP CONSTRAINT IF EXISTS directus_users_role_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_shares DROP CONSTRAINT IF EXISTS directus_shares_user_created_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_shares DROP CONSTRAINT IF EXISTS directus_shares_role_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_shares DROP CONSTRAINT IF EXISTS directus_shares_collection_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_settings DROP CONSTRAINT IF EXISTS directus_settings_storage_default_folder_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_settings DROP CONSTRAINT IF EXISTS directus_settings_public_registration_role_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_settings DROP CONSTRAINT IF EXISTS directus_settings_public_foreground_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_settings DROP CONSTRAINT IF EXISTS directus_settings_public_favicon_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_settings DROP CONSTRAINT IF EXISTS directus_settings_public_background_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_settings DROP CONSTRAINT IF EXISTS directus_settings_project_logo_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_sessions DROP CONSTRAINT IF EXISTS directus_sessions_user_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_sessions DROP CONSTRAINT IF EXISTS directus_sessions_share_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_roles DROP CONSTRAINT IF EXISTS directus_roles_parent_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_revisions DROP CONSTRAINT IF EXISTS directus_revisions_version_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_revisions DROP CONSTRAINT IF EXISTS directus_revisions_parent_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_revisions DROP CONSTRAINT IF EXISTS directus_revisions_activity_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_presets DROP CONSTRAINT IF EXISTS directus_presets_user_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_presets DROP CONSTRAINT IF EXISTS directus_presets_role_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_permissions DROP CONSTRAINT IF EXISTS directus_permissions_policy_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_panels DROP CONSTRAINT IF EXISTS directus_panels_user_created_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_panels DROP CONSTRAINT IF EXISTS directus_panels_dashboard_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_operations DROP CONSTRAINT IF EXISTS directus_operations_user_created_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_operations DROP CONSTRAINT IF EXISTS directus_operations_resolve_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_operations DROP CONSTRAINT IF EXISTS directus_operations_reject_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_operations DROP CONSTRAINT IF EXISTS directus_operations_flow_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_notifications DROP CONSTRAINT IF EXISTS directus_notifications_sender_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_notifications DROP CONSTRAINT IF EXISTS directus_notifications_recipient_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_folders DROP CONSTRAINT IF EXISTS directus_folders_parent_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_flows DROP CONSTRAINT IF EXISTS directus_flows_user_created_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_files DROP CONSTRAINT IF EXISTS directus_files_uploaded_by_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_files DROP CONSTRAINT IF EXISTS directus_files_modified_by_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_files DROP CONSTRAINT IF EXISTS directus_files_folder_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_dashboards DROP CONSTRAINT IF EXISTS directus_dashboards_user_created_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_comments DROP CONSTRAINT IF EXISTS directus_comments_user_updated_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_comments DROP CONSTRAINT IF EXISTS directus_comments_user_created_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_collections DROP CONSTRAINT IF EXISTS directus_collections_group_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_access DROP CONSTRAINT IF EXISTS directus_access_user_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_access DROP CONSTRAINT IF EXISTS directus_access_role_foreign; -ALTER TABLE IF EXISTS ONLY public.directus_access DROP CONSTRAINT IF EXISTS directus_access_policy_foreign; -DROP INDEX IF EXISTS public.directus_revisions_parent_index; -DROP INDEX IF EXISTS public.directus_revisions_activity_index; -DROP INDEX IF EXISTS public.directus_activity_timestamp_index; -ALTER TABLE IF EXISTS ONLY public.directus_versions DROP CONSTRAINT IF EXISTS directus_versions_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_users DROP CONSTRAINT IF EXISTS directus_users_token_unique; -ALTER TABLE IF EXISTS ONLY public.directus_users DROP CONSTRAINT IF EXISTS directus_users_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_users DROP CONSTRAINT IF EXISTS directus_users_external_identifier_unique; -ALTER TABLE IF EXISTS ONLY public.directus_users DROP CONSTRAINT IF EXISTS directus_users_email_unique; -ALTER TABLE IF EXISTS ONLY public.directus_translations DROP CONSTRAINT IF EXISTS directus_translations_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_shares DROP CONSTRAINT IF EXISTS directus_shares_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_settings DROP CONSTRAINT IF EXISTS directus_settings_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_sessions DROP CONSTRAINT IF EXISTS directus_sessions_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_roles DROP CONSTRAINT IF EXISTS directus_roles_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_revisions DROP CONSTRAINT IF EXISTS directus_revisions_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_relations DROP CONSTRAINT IF EXISTS directus_relations_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_presets DROP CONSTRAINT IF EXISTS directus_presets_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_policies DROP CONSTRAINT IF EXISTS directus_policies_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_permissions DROP CONSTRAINT IF EXISTS directus_permissions_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_panels DROP CONSTRAINT IF EXISTS directus_panels_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_operations DROP CONSTRAINT IF EXISTS directus_operations_resolve_unique; -ALTER TABLE IF EXISTS ONLY public.directus_operations DROP CONSTRAINT IF EXISTS directus_operations_reject_unique; -ALTER TABLE IF EXISTS ONLY public.directus_operations DROP CONSTRAINT IF EXISTS directus_operations_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_notifications DROP CONSTRAINT IF EXISTS directus_notifications_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_migrations DROP CONSTRAINT IF EXISTS directus_migrations_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_folders DROP CONSTRAINT IF EXISTS directus_folders_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_flows DROP CONSTRAINT IF EXISTS directus_flows_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_flows DROP CONSTRAINT IF EXISTS directus_flows_operation_unique; -ALTER TABLE IF EXISTS ONLY public.directus_files DROP CONSTRAINT IF EXISTS directus_files_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_fields DROP CONSTRAINT IF EXISTS directus_fields_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_extensions DROP CONSTRAINT IF EXISTS directus_extensions_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_dashboards DROP CONSTRAINT IF EXISTS directus_dashboards_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_comments DROP CONSTRAINT IF EXISTS directus_comments_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_collections DROP CONSTRAINT IF EXISTS directus_collections_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_activity DROP CONSTRAINT IF EXISTS directus_activity_pkey; -ALTER TABLE IF EXISTS ONLY public.directus_access DROP CONSTRAINT IF EXISTS directus_access_pkey; -ALTER TABLE IF EXISTS ONLY public.contact_submissions DROP CONSTRAINT IF EXISTS contact_submissions_pkey; -ALTER TABLE IF EXISTS public.directus_settings ALTER COLUMN id DROP DEFAULT; -ALTER TABLE IF EXISTS public.directus_revisions ALTER COLUMN id DROP DEFAULT; -ALTER TABLE IF EXISTS public.directus_relations ALTER COLUMN id DROP DEFAULT; -ALTER TABLE IF EXISTS public.directus_presets ALTER COLUMN id DROP DEFAULT; -ALTER TABLE IF EXISTS public.directus_permissions ALTER COLUMN id DROP DEFAULT; -ALTER TABLE IF EXISTS public.directus_notifications ALTER COLUMN id DROP DEFAULT; -ALTER TABLE IF EXISTS public.directus_fields ALTER COLUMN id DROP DEFAULT; -ALTER TABLE IF EXISTS public.directus_activity ALTER COLUMN id DROP DEFAULT; -ALTER TABLE IF EXISTS public.contact_submissions ALTER COLUMN id DROP DEFAULT; -DROP TABLE IF EXISTS public.directus_versions; -DROP TABLE IF EXISTS public.directus_users; -DROP TABLE IF EXISTS public.directus_translations; -DROP TABLE IF EXISTS public.directus_shares; -DROP SEQUENCE IF EXISTS public.directus_settings_id_seq; -DROP TABLE IF EXISTS public.directus_settings; -DROP TABLE IF EXISTS public.directus_sessions; -DROP TABLE IF EXISTS public.directus_roles; -DROP SEQUENCE IF EXISTS public.directus_revisions_id_seq; -DROP TABLE IF EXISTS public.directus_revisions; -DROP SEQUENCE IF EXISTS public.directus_relations_id_seq; -DROP TABLE IF EXISTS public.directus_relations; -DROP SEQUENCE IF EXISTS public.directus_presets_id_seq; -DROP TABLE IF EXISTS public.directus_presets; -DROP TABLE IF EXISTS public.directus_policies; -DROP SEQUENCE IF EXISTS public.directus_permissions_id_seq; -DROP TABLE IF EXISTS public.directus_permissions; -DROP TABLE IF EXISTS public.directus_panels; -DROP TABLE IF EXISTS public.directus_operations; -DROP SEQUENCE IF EXISTS public.directus_notifications_id_seq; -DROP TABLE IF EXISTS public.directus_notifications; -DROP TABLE IF EXISTS public.directus_migrations; -DROP TABLE IF EXISTS public.directus_folders; -DROP TABLE IF EXISTS public.directus_flows; -DROP TABLE IF EXISTS public.directus_files; -DROP SEQUENCE IF EXISTS public.directus_fields_id_seq; -DROP TABLE IF EXISTS public.directus_fields; -DROP TABLE IF EXISTS public.directus_extensions; -DROP TABLE IF EXISTS public.directus_dashboards; -DROP TABLE IF EXISTS public.directus_comments; -DROP TABLE IF EXISTS public.directus_collections; -DROP SEQUENCE IF EXISTS public.directus_activity_id_seq; -DROP TABLE IF EXISTS public.directus_activity; -DROP TABLE IF EXISTS public.directus_access; -DROP SEQUENCE IF EXISTS public.contact_submissions_id_seq; -DROP TABLE IF EXISTS public.contact_submissions; -SET default_tablespace = ''; - -SET default_table_access_method = heap; - --- --- Name: contact_submissions; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.contact_submissions ( - id integer NOT NULL, - name character varying(255), - email character varying(255), - company character varying(255), - message text, - date_created timestamp with time zone -); - - --- --- Name: contact_submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.contact_submissions_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: contact_submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.contact_submissions_id_seq OWNED BY public.contact_submissions.id; - - --- --- Name: directus_access; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_access ( - id uuid NOT NULL, - role uuid, - "user" uuid, - policy uuid NOT NULL, - sort integer -); - - --- --- Name: directus_activity; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_activity ( - id integer NOT NULL, - action character varying(45) NOT NULL, - "user" uuid, - "timestamp" timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, - ip character varying(50), - user_agent text, - collection character varying(64) NOT NULL, - item character varying(255) NOT NULL, - origin character varying(255) -); - - --- --- Name: directus_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.directus_activity_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: directus_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.directus_activity_id_seq OWNED BY public.directus_activity.id; - - --- --- Name: directus_collections; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_collections ( - collection character varying(64) NOT NULL, - icon character varying(64), - note text, - display_template character varying(255), - hidden boolean DEFAULT false NOT NULL, - singleton boolean DEFAULT false NOT NULL, - translations json, - archive_field character varying(64), - archive_app_filter boolean DEFAULT true NOT NULL, - archive_value character varying(255), - unarchive_value character varying(255), - sort_field character varying(64), - accountability character varying(255) DEFAULT 'all'::character varying, - color character varying(255), - item_duplication_fields json, - sort integer, - "group" character varying(64), - collapse character varying(255) DEFAULT 'open'::character varying NOT NULL, - preview_url character varying(255), - versioning boolean DEFAULT false NOT NULL -); - - --- --- Name: directus_comments; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_comments ( - id uuid NOT NULL, - collection character varying(64) NOT NULL, - item character varying(255) NOT NULL, - comment text NOT NULL, - date_created timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - date_updated timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - user_created uuid, - user_updated uuid -); - - --- --- Name: directus_dashboards; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_dashboards ( - id uuid NOT NULL, - name character varying(255) NOT NULL, - icon character varying(64) DEFAULT 'dashboard'::character varying NOT NULL, - note text, - date_created timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - user_created uuid, - color character varying(255) -); - - --- --- Name: directus_extensions; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_extensions ( - enabled boolean DEFAULT true NOT NULL, - id uuid NOT NULL, - folder character varying(255) NOT NULL, - source character varying(255) NOT NULL, - bundle uuid -); - - --- --- Name: directus_fields; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_fields ( - id integer NOT NULL, - collection character varying(64) NOT NULL, - field character varying(64) NOT NULL, - special character varying(64), - interface character varying(64), - options json, - display character varying(64), - display_options json, - readonly boolean DEFAULT false NOT NULL, - hidden boolean DEFAULT false NOT NULL, - sort integer, - width character varying(30) DEFAULT 'full'::character varying, - translations json, - note text, - conditions json, - required boolean DEFAULT false, - "group" character varying(64), - validation json, - validation_message text, - searchable boolean DEFAULT true NOT NULL -); - - --- --- Name: directus_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.directus_fields_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: directus_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.directus_fields_id_seq OWNED BY public.directus_fields.id; - - --- --- Name: directus_files; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_files ( - id uuid NOT NULL, - storage character varying(255) NOT NULL, - filename_disk character varying(255), - filename_download character varying(255) NOT NULL, - title character varying(255), - type character varying(255), - folder uuid, - uploaded_by uuid, - created_on timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, - modified_by uuid, - modified_on timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL, - charset character varying(50), - filesize bigint, - width integer, - height integer, - duration integer, - embed character varying(200), - description text, - location text, - tags text, - metadata json, - focal_point_x integer, - focal_point_y integer, - tus_id character varying(64), - tus_data json, - uploaded_on timestamp with time zone -); - - --- --- Name: directus_flows; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_flows ( - id uuid NOT NULL, - name character varying(255) NOT NULL, - icon character varying(64), - color character varying(255), - description text, - status character varying(255) DEFAULT 'active'::character varying NOT NULL, - trigger character varying(255), - accountability character varying(255) DEFAULT 'all'::character varying, - options json, - operation uuid, - date_created timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - user_created uuid -); - - --- --- Name: directus_folders; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_folders ( - id uuid NOT NULL, - name character varying(255) NOT NULL, - parent uuid -); - - --- --- Name: directus_migrations; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_migrations ( - version character varying(255) NOT NULL, - name character varying(255) NOT NULL, - "timestamp" timestamp with time zone DEFAULT CURRENT_TIMESTAMP -); - - --- --- Name: directus_notifications; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_notifications ( - id integer NOT NULL, - "timestamp" timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - status character varying(255) DEFAULT 'inbox'::character varying, - recipient uuid NOT NULL, - sender uuid, - subject character varying(255) NOT NULL, - message text, - collection character varying(64), - item character varying(255) -); - - --- --- Name: directus_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.directus_notifications_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: directus_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.directus_notifications_id_seq OWNED BY public.directus_notifications.id; - - --- --- Name: directus_operations; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_operations ( - id uuid NOT NULL, - name character varying(255), - key character varying(255) NOT NULL, - type character varying(255) NOT NULL, - position_x integer NOT NULL, - position_y integer NOT NULL, - options json, - resolve uuid, - reject uuid, - flow uuid NOT NULL, - date_created timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - user_created uuid -); - - --- --- Name: directus_panels; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_panels ( - id uuid NOT NULL, - dashboard uuid NOT NULL, - name character varying(255), - icon character varying(64) DEFAULT NULL::character varying, - color character varying(10), - show_header boolean DEFAULT false NOT NULL, - note text, - type character varying(255) NOT NULL, - position_x integer NOT NULL, - position_y integer NOT NULL, - width integer NOT NULL, - height integer NOT NULL, - options json, - date_created timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - user_created uuid -); - - --- --- Name: directus_permissions; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_permissions ( - id integer NOT NULL, - collection character varying(64) NOT NULL, - action character varying(10) NOT NULL, - permissions json, - validation json, - presets json, - fields text, - policy uuid NOT NULL -); - - --- --- Name: directus_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.directus_permissions_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: directus_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.directus_permissions_id_seq OWNED BY public.directus_permissions.id; - - --- --- Name: directus_policies; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_policies ( - id uuid NOT NULL, - name character varying(100) NOT NULL, - icon character varying(64) DEFAULT 'badge'::character varying NOT NULL, - description text, - ip_access text, - enforce_tfa boolean DEFAULT false NOT NULL, - admin_access boolean DEFAULT false NOT NULL, - app_access boolean DEFAULT false NOT NULL -); - - --- --- Name: directus_presets; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_presets ( - id integer NOT NULL, - bookmark character varying(255), - "user" uuid, - role uuid, - collection character varying(64), - search character varying(100), - layout character varying(100) DEFAULT 'tabular'::character varying, - layout_query json, - layout_options json, - refresh_interval integer, - filter json, - icon character varying(64) DEFAULT 'bookmark'::character varying, - color character varying(255) -); - - --- --- Name: directus_presets_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.directus_presets_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: directus_presets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.directus_presets_id_seq OWNED BY public.directus_presets.id; - - --- --- Name: directus_relations; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_relations ( - id integer NOT NULL, - many_collection character varying(64) NOT NULL, - many_field character varying(64) NOT NULL, - one_collection character varying(64), - one_field character varying(64), - one_collection_field character varying(64), - one_allowed_collections text, - junction_field character varying(64), - sort_field character varying(64), - one_deselect_action character varying(255) DEFAULT 'nullify'::character varying NOT NULL -); - - --- --- Name: directus_relations_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.directus_relations_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: directus_relations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.directus_relations_id_seq OWNED BY public.directus_relations.id; - - --- --- Name: directus_revisions; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_revisions ( - id integer NOT NULL, - activity integer NOT NULL, - collection character varying(64) NOT NULL, - item character varying(255) NOT NULL, - data json, - delta json, - parent integer, - version uuid -); - - --- --- Name: directus_revisions_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.directus_revisions_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: directus_revisions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.directus_revisions_id_seq OWNED BY public.directus_revisions.id; - - --- --- Name: directus_roles; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_roles ( - id uuid NOT NULL, - name character varying(100) NOT NULL, - icon character varying(64) DEFAULT 'supervised_user_circle'::character varying NOT NULL, - description text, - parent uuid -); - - --- --- Name: directus_sessions; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_sessions ( - token character varying(64) NOT NULL, - "user" uuid, - expires timestamp with time zone NOT NULL, - ip character varying(255), - user_agent text, - share uuid, - origin character varying(255), - next_token character varying(64) -); - - --- --- Name: directus_settings; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_settings ( - id integer NOT NULL, - project_name character varying(100) DEFAULT 'Directus'::character varying NOT NULL, - project_url character varying(255), - project_color character varying(255) DEFAULT '#6644FF'::character varying NOT NULL, - project_logo uuid, - public_foreground uuid, - public_background uuid, - public_note text, - auth_login_attempts integer DEFAULT 25, - auth_password_policy character varying(100), - storage_asset_transform character varying(7) DEFAULT 'all'::character varying, - storage_asset_presets json, - custom_css text, - storage_default_folder uuid, - basemaps json, - mapbox_key character varying(255), - module_bar json, - project_descriptor character varying(100), - default_language character varying(255) DEFAULT 'en-US'::character varying NOT NULL, - custom_aspect_ratios json, - public_favicon uuid, - default_appearance character varying(255) DEFAULT 'auto'::character varying NOT NULL, - default_theme_light character varying(255), - theme_light_overrides json, - default_theme_dark character varying(255), - theme_dark_overrides json, - report_error_url character varying(255), - report_bug_url character varying(255), - report_feature_url character varying(255), - public_registration boolean DEFAULT false NOT NULL, - public_registration_verify_email boolean DEFAULT true NOT NULL, - public_registration_role uuid, - public_registration_email_filter json, - visual_editor_urls json, - project_id uuid, - mcp_enabled boolean DEFAULT false NOT NULL, - mcp_allow_deletes boolean DEFAULT false NOT NULL, - mcp_prompts_collection character varying(255) DEFAULT NULL::character varying, - mcp_system_prompt_enabled boolean DEFAULT true NOT NULL, - mcp_system_prompt text, - project_owner character varying(255), - project_usage character varying(255), - org_name character varying(255), - product_updates boolean, - project_status character varying(255), - ai_openai_api_key text, - ai_anthropic_api_key text, - ai_system_prompt text -); - - --- --- Name: directus_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.directus_settings_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: directus_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.directus_settings_id_seq OWNED BY public.directus_settings.id; - - --- --- Name: directus_shares; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_shares ( - id uuid NOT NULL, - name character varying(255), - collection character varying(64) NOT NULL, - item character varying(255) NOT NULL, - role uuid, - password character varying(255), - user_created uuid, - date_created timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - date_start timestamp with time zone, - date_end timestamp with time zone, - times_used integer DEFAULT 0, - max_uses integer -); - - --- --- Name: directus_translations; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_translations ( - id uuid NOT NULL, - language character varying(255) NOT NULL, - key character varying(255) NOT NULL, - value text NOT NULL -); - - --- --- Name: directus_users; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_users ( - id uuid NOT NULL, - first_name character varying(50), - last_name character varying(50), - email character varying(128), - password character varying(255), - location character varying(255), - title character varying(50), - description text, - tags json, - avatar uuid, - language character varying(255) DEFAULT NULL::character varying, - tfa_secret character varying(255), - status character varying(16) DEFAULT 'active'::character varying NOT NULL, - role uuid, - token character varying(255), - last_access timestamp with time zone, - last_page character varying(255), - provider character varying(128) DEFAULT 'default'::character varying NOT NULL, - external_identifier character varying(255), - auth_data json, - email_notifications boolean DEFAULT true, - appearance character varying(255), - theme_dark character varying(255), - theme_light character varying(255), - theme_light_overrides json, - theme_dark_overrides json, - text_direction character varying(255) DEFAULT 'auto'::character varying NOT NULL -); - - --- --- Name: directus_versions; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.directus_versions ( - id uuid NOT NULL, - key character varying(64) NOT NULL, - name character varying(255), - collection character varying(64) NOT NULL, - item character varying(255) NOT NULL, - hash character varying(255), - date_created timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - date_updated timestamp with time zone DEFAULT CURRENT_TIMESTAMP, - user_created uuid, - user_updated uuid, - delta json -); - - --- --- Name: contact_submissions id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.contact_submissions ALTER COLUMN id SET DEFAULT nextval('public.contact_submissions_id_seq'::regclass); - - --- --- Name: directus_activity id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.directus_activity ALTER COLUMN id SET DEFAULT nextval('public.directus_activity_id_seq'::regclass); - - --- --- Name: directus_fields id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.directus_fields ALTER COLUMN id SET DEFAULT nextval('public.directus_fields_id_seq'::regclass); - - --- --- Name: directus_notifications id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.directus_notifications ALTER COLUMN id SET DEFAULT nextval('public.directus_notifications_id_seq'::regclass); - - --- --- Name: directus_permissions id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.directus_permissions ALTER COLUMN id SET DEFAULT nextval('public.directus_permissions_id_seq'::regclass); - - --- --- Name: directus_presets id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.directus_presets ALTER COLUMN id SET DEFAULT nextval('public.directus_presets_id_seq'::regclass); - - --- --- Name: directus_relations id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.directus_relations ALTER COLUMN id SET DEFAULT nextval('public.directus_relations_id_seq'::regclass); - - --- --- Name: directus_revisions id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.directus_revisions ALTER COLUMN id SET DEFAULT nextval('public.directus_revisions_id_seq'::regclass); - - --- --- Name: directus_settings id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.directus_settings ALTER COLUMN id SET DEFAULT nextval('public.directus_settings_id_seq'::regclass); - - --- --- Data for Name: contact_submissions; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.contact_submissions (id, name, email, company, message, date_created) FROM stdin; -1 Test User test@example.com Test Company This is a test message from Antigravity to verify Directus integration. It must be at least 20 characters long. 2026-02-04 23:18:12.93+00 -2 Marc Mintel marc@mintel.me Mintel.me Hallo ich hab eine Frage! 2026-02-04 23:37:07.706+00 -3 Verification Test verify@mintel.me Nicht angegeben Testing resilient reporting and notifications. 2026-02-04 23:41:41.625+00 -4 Marc Mintel marc@mintel.me Mintel.me Hallo das ist ein Test 2026-02-04 23:46:51.035+00 -\. - - --- --- Data for Name: directus_access; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_access (id, role, "user", policy, sort) FROM stdin; -5767af92-3332-4d77-9c0f-9ce4e26a6c79 \N \N abf8a154-5b1c-4a46-ac9c-7300570f4f17 1 -f477a1c6-0519-4aba-9daf-e6a2eb1236ac f243a35a-b244-4f26-a58b-5112a4af7513 \N 0509fa50-e980-4f3b-845a-f2bb0423f7fd \N -\. - - --- --- Data for Name: directus_activity; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_activity (id, action, "user", "timestamp", ip, user_agent, collection, item, origin) FROM stdin; -1 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:02.581+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -2 update 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:03.06+00 162.159.140.98 node directus_settings 1 \N -3 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:03.08+00 162.159.140.98 node directus_fields 1 \N -4 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:03.082+00 162.159.140.98 node directus_collections contact_submissions \N -5 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:03.126+00 162.159.140.98 node directus_fields 2 \N -6 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:03.164+00 162.159.140.98 node directus_fields 3 \N -7 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:03.197+00 162.159.140.98 node directus_fields 4 \N -8 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:03.224+00 162.159.140.98 node directus_fields 5 \N -9 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:03.248+00 162.159.140.98 node directus_fields 6 \N -10 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:12.446+00 172.20.0.2 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -11 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:12.931+00 172.20.0.2 node contact_submissions 1 \N -12 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:18:25.749+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -13 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:37:07.237+00 172.20.0.2 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -14 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:37:07.707+00 172.20.0.2 node contact_submissions 2 \N -15 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:41:41.159+00 172.20.0.2 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -16 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:41:41.627+00 172.20.0.2 node contact_submissions 3 \N -17 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:41:58.84+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -18 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:42:07.904+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -19 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:46:50.557+00 172.20.0.2 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -20 create 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-04 23:46:51.036+00 172.20.0.2 node contact_submissions 4 \N -21 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:08:07.558+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -22 update 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:08:08.042+00 162.159.140.98 node directus_settings 1 \N -23 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:08:59.178+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -24 update 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:08:59.67+00 162.159.140.98 node directus_settings 1 \N -25 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:09:57.57+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -26 update 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:09:58.05+00 162.159.140.98 node directus_settings 1 \N -27 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:10:41.953+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -28 update 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:10:42.446+00 162.159.140.98 node directus_settings 1 \N -29 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:10:56.98+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -30 update 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:10:57.468+00 162.159.140.98 node directus_settings 1 \N -31 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:38:54.995+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -32 update 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:38:55.477+00 162.159.140.98 node directus_settings 1 \N -33 login 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:40:23.56+00 162.159.140.98 node directus_users 031fc61d-1f42-4764-8ccf-98c5c854795a \N -34 update 031fc61d-1f42-4764-8ccf-98c5c854795a 2026-02-06 18:40:24.045+00 162.159.140.98 node directus_settings 1 \N -\. - - --- --- Data for Name: directus_collections; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_collections (collection, icon, note, display_template, hidden, singleton, translations, archive_field, archive_app_filter, archive_value, unarchive_value, sort_field, accountability, color, item_duplication_fields, sort, "group", collapse, preview_url, versioning) FROM stdin; -contact_submissions contact_mail \N {{name}} <{{email}}> f f \N \N t \N \N \N all \N \N \N \N open \N f -\. - - --- --- Data for Name: directus_comments; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_comments (id, collection, item, comment, date_created, date_updated, user_created, user_updated) FROM stdin; -\. - - --- --- Data for Name: directus_dashboards; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_dashboards (id, name, icon, note, date_created, user_created, color) FROM stdin; -\. - - --- --- Data for Name: directus_extensions; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_extensions (enabled, id, folder, source, bundle) FROM stdin; -\. - - --- --- Data for Name: directus_fields; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_fields (id, collection, field, special, interface, options, display, display_options, readonly, hidden, sort, width, translations, note, conditions, required, "group", validation, validation_message, searchable) FROM stdin; -1 contact_submissions id \N numeric \N \N \N t t 1 full \N \N \N f \N \N \N t -2 contact_submissions name \N input \N \N \N f f 2 full \N \N \N f \N \N \N t -3 contact_submissions email \N input \N \N \N f f 3 full \N \N \N f \N \N \N t -4 contact_submissions company \N input \N \N \N f f 4 full \N \N \N f \N \N \N t -5 contact_submissions message \N textarea \N \N \N f f 5 full \N \N \N f \N \N \N t -6 contact_submissions date_created date-created datetime \N \N \N f f 6 full \N \N \N f \N \N \N t -\. - - --- --- Data for Name: directus_files; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_files (id, storage, filename_disk, filename_download, title, type, folder, uploaded_by, created_on, modified_by, modified_on, charset, filesize, width, height, duration, embed, description, location, tags, metadata, focal_point_x, focal_point_y, tus_id, tus_data, uploaded_on) FROM stdin; -\. - - --- --- Data for Name: directus_flows; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_flows (id, name, icon, color, description, status, trigger, accountability, options, operation, date_created, user_created) FROM stdin; -\. - - --- --- Data for Name: directus_folders; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_folders (id, name, parent) FROM stdin; -\. - - --- --- Data for Name: directus_migrations; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_migrations (version, name, "timestamp") FROM stdin; -20201028A Remove Collection Foreign Keys 2026-02-03 15:19:50.057902+00 -20201029A Remove System Relations 2026-02-03 15:19:50.062175+00 -20201029B Remove System Collections 2026-02-03 15:19:50.066773+00 -20201029C Remove System Fields 2026-02-03 15:19:50.071882+00 -20201105A Add Cascade System Relations 2026-02-03 15:19:50.094929+00 -20201105B Change Webhook URL Type 2026-02-03 15:19:50.099569+00 -20210225A Add Relations Sort Field 2026-02-03 15:19:50.102795+00 -20210304A Remove Locked Fields 2026-02-03 15:19:50.104504+00 -20210312A Webhooks Collections Text 2026-02-03 15:19:50.107669+00 -20210331A Add Refresh Interval 2026-02-03 15:19:50.109426+00 -20210415A Make Filesize Nullable 2026-02-03 15:19:50.113577+00 -20210416A Add Collections Accountability 2026-02-03 15:19:50.115937+00 -20210422A Remove Files Interface 2026-02-03 15:19:50.117197+00 -20210506A Rename Interfaces 2026-02-03 15:19:50.127166+00 -20210510A Restructure Relations 2026-02-03 15:19:50.133296+00 -20210518A Add Foreign Key Constraints 2026-02-03 15:19:50.137387+00 -20210519A Add System Fk Triggers 2026-02-03 15:19:50.152561+00 -20210521A Add Collections Icon Color 2026-02-03 15:19:50.154112+00 -20210525A Add Insights 2026-02-03 15:19:50.164687+00 -20210608A Add Deep Clone Config 2026-02-03 15:19:50.1664+00 -20210626A Change Filesize Bigint 2026-02-03 15:19:50.174562+00 -20210716A Add Conditions to Fields 2026-02-03 15:19:50.176557+00 -20210721A Add Default Folder 2026-02-03 15:19:50.180518+00 -20210802A Replace Groups 2026-02-03 15:19:50.18334+00 -20210803A Add Required to Fields 2026-02-03 15:19:50.184975+00 -20210805A Update Groups 2026-02-03 15:19:50.187237+00 -20210805B Change Image Metadata Structure 2026-02-03 15:19:50.189316+00 -20210811A Add Geometry Config 2026-02-03 15:19:50.19092+00 -20210831A Remove Limit Column 2026-02-03 15:19:50.192578+00 -20210903A Add Auth Provider 2026-02-03 15:19:50.20054+00 -20210907A Webhooks Collections Not Null 2026-02-03 15:19:50.204371+00 -20210910A Move Module Setup 2026-02-03 15:19:50.206614+00 -20210920A Webhooks URL Not Null 2026-02-03 15:19:50.210094+00 -20210924A Add Collection Organization 2026-02-03 15:19:50.213902+00 -20210927A Replace Fields Group 2026-02-03 15:19:50.218587+00 -20210927B Replace M2M Interface 2026-02-03 15:19:50.22008+00 -20210929A Rename Login Action 2026-02-03 15:19:50.221428+00 -20211007A Update Presets 2026-02-03 15:19:50.22467+00 -20211009A Add Auth Data 2026-02-03 15:19:50.226122+00 -20211016A Add Webhook Headers 2026-02-03 15:19:50.227954+00 -20211103A Set Unique to User Token 2026-02-03 15:19:50.230742+00 -20211103B Update Special Geometry 2026-02-03 15:19:50.232653+00 -20211104A Remove Collections Listing 2026-02-03 15:19:50.234636+00 -20211118A Add Notifications 2026-02-03 15:19:50.241983+00 -20211211A Add Shares 2026-02-03 15:19:50.251822+00 -20211230A Add Project Descriptor 2026-02-03 15:19:50.253575+00 -20220303A Remove Default Project Color 2026-02-03 15:19:50.257087+00 -20220308A Add Bookmark Icon and Color 2026-02-03 15:19:50.258684+00 -20220314A Add Translation Strings 2026-02-03 15:19:50.260264+00 -20220322A Rename Field Typecast Flags 2026-02-03 15:19:50.262683+00 -20220323A Add Field Validation 2026-02-03 15:19:50.26419+00 -20220325A Fix Typecast Flags 2026-02-03 15:19:50.266435+00 -20220325B Add Default Language 2026-02-03 15:19:50.271036+00 -20220402A Remove Default Value Panel Icon 2026-02-03 15:19:50.274391+00 -20220429A Add Flows 2026-02-03 15:19:50.291528+00 -20220429B Add Color to Insights Icon 2026-02-03 15:19:50.293165+00 -20220429C Drop Non Null From IP of Activity 2026-02-03 15:19:50.294566+00 -20220429D Drop Non Null From Sender of Notifications 2026-02-03 15:19:50.295834+00 -20220614A Rename Hook Trigger to Event 2026-02-03 15:19:50.29696+00 -20220801A Update Notifications Timestamp Column 2026-02-03 15:19:50.300239+00 -20220802A Add Custom Aspect Ratios 2026-02-03 15:19:50.301693+00 -20220826A Add Origin to Accountability 2026-02-03 15:19:50.303682+00 -20230401A Update Material Icons 2026-02-03 15:19:50.307474+00 -20230525A Add Preview Settings 2026-02-03 15:19:50.308721+00 -20230526A Migrate Translation Strings 2026-02-03 15:19:50.313754+00 -20230721A Require Shares Fields 2026-02-03 15:19:50.316526+00 -20230823A Add Content Versioning 2026-02-03 15:19:50.32597+00 -20230927A Themes 2026-02-03 15:19:50.33375+00 -20231009A Update CSV Fields to Text 2026-02-03 15:19:50.336674+00 -20231009B Update Panel Options 2026-02-03 15:19:50.337981+00 -20231010A Add Extensions 2026-02-03 15:19:50.340444+00 -20231215A Add Focalpoints 2026-02-03 15:19:50.341917+00 -20240122A Add Report URL Fields 2026-02-03 15:19:50.343434+00 -20240204A Marketplace 2026-02-03 15:19:50.354984+00 -20240305A Change Useragent Type 2026-02-03 15:19:50.359715+00 -20240311A Deprecate Webhooks 2026-02-03 15:19:50.364218+00 -20240422A Public Registration 2026-02-03 15:19:50.367066+00 -20240515A Add Session Window 2026-02-03 15:19:50.368511+00 -20240701A Add Tus Data 2026-02-03 15:19:50.370107+00 -20240716A Update Files Date Fields 2026-02-03 15:19:50.373558+00 -20240806A Permissions Policies 2026-02-03 15:19:50.397209+00 -20240817A Update Icon Fields Length 2026-02-03 15:19:50.409773+00 -20240909A Separate Comments 2026-02-03 15:19:50.416321+00 -20240909B Consolidate Content Versioning 2026-02-03 15:19:50.418546+00 -20240924A Migrate Legacy Comments 2026-02-03 15:19:50.421353+00 -20240924B Populate Versioning Deltas 2026-02-03 15:19:50.423741+00 -20250224A Visual Editor 2026-02-03 15:19:50.425749+00 -20250609A License Banner 2026-02-03 15:19:50.428481+00 -20250613A Add Project ID 2026-02-03 15:19:50.439812+00 -20250718A Add Direction 2026-02-03 15:19:50.44164+00 -20250813A Add MCP 2026-02-03 15:19:50.443844+00 -20251012A Add Field Searchable 2026-02-03 15:19:50.44587+00 -20251014A Add Project Owner 2026-02-03 15:19:50.470558+00 -20251028A Add Retention Indexes 2026-02-03 15:19:50.497896+00 -20251103A Add AI Settings 2026-02-03 15:19:50.499838+00 -20251224A Remove Webhooks 2026-02-03 15:19:50.50306+00 -20260113A Add Revisions Index 2026-02-03 15:19:50.513245+00 -\. - - --- --- Data for Name: directus_notifications; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_notifications (id, "timestamp", status, recipient, sender, subject, message, collection, item) FROM stdin; -\. - - --- --- Data for Name: directus_operations; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_operations (id, name, key, type, position_x, position_y, options, resolve, reject, flow, date_created, user_created) FROM stdin; -\. - - --- --- Data for Name: directus_panels; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_panels (id, dashboard, name, icon, color, show_header, note, type, position_x, position_y, width, height, options, date_created, user_created) FROM stdin; -\. - - --- --- Data for Name: directus_permissions; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_permissions (id, collection, action, permissions, validation, presets, fields, policy) FROM stdin; -\. - - --- --- Data for Name: directus_policies; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_policies (id, name, icon, description, ip_access, enforce_tfa, admin_access, app_access) FROM stdin; -abf8a154-5b1c-4a46-ac9c-7300570f4f17 $t:public_label public $t:public_description \N f f f -0509fa50-e980-4f3b-845a-f2bb0423f7fd Administrator verified $t:admin_description \N f t t -\. - - --- --- Data for Name: directus_presets; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_presets (id, bookmark, "user", role, collection, search, layout, layout_query, layout_options, refresh_interval, filter, icon, color) FROM stdin; -\. - - --- --- Data for Name: directus_relations; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_relations (id, many_collection, many_field, one_collection, one_field, one_collection_field, one_allowed_collections, junction_field, sort_field, one_deselect_action) FROM stdin; -\. - - --- --- Data for Name: directus_revisions; Type: TABLE DATA; Schema: public; Owner: - --- - -COPY public.directus_revisions (id, activity, collection, item, data, delta, parent, version) FROM stdin; -1 2 directus_settings 1 {"id":1,"project_name":"mb-grid-solutions","project_url":null,"project_color":"#82ed20","project_logo":null,"public_foreground":null,"public_background":null,"public_note":"\\n \\n
MINTEL INFRASTRUCTURE ENGINE
\\nMINTEL INFRASTRUCTURE ENGINE
\\nMINTEL INFRASTRUCTURE ENGINE
\\nMINTEL INFRASTRUCTURE ENGINE
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\\nMintel Infrastructure Engine
\n