--
-- PostgreSQL database dump
--

\restrict XxPV5SLsGeK8ep280OkNxCtzcYN2qsc9BRfO3uzlNQj8uthYiBD5WRu68hyVgsC

-- Dumped from database version 18.4
-- Dumped by pg_dump version 18.4

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;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: mfa_users; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.mfa_users (
    user_key character varying(255) NOT NULL,
    method character varying(10) DEFAULT 'none'::character varying,
    totp_secret character varying(64) DEFAULT ''::character varying,
    otp_code character varying(6) DEFAULT ''::character varying,
    otp_created timestamp without time zone,
    mfa_enabled smallint DEFAULT 0,
    updated_at timestamp without time zone DEFAULT now()
);


ALTER TABLE public.mfa_users OWNER TO postgres;

--
-- Data for Name: mfa_users; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.mfa_users (user_key, method, totp_secret, otp_code, otp_created, mfa_enabled, updated_at) FROM stdin;
ats:alok@x.com	totp	WXL24XGRCZCRXDKIP27GM6EZEXPUHVWZ		\N	1	2026-06-22 10:09:53.632795
ats:test@demo.com	totp	JA2MBJZBRP7OX5IV2OLDYTOR2YW6JLQU		\N	0	2026-06-22 10:20:49.165245
\.


--
-- Name: mfa_users mfa_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.mfa_users
    ADD CONSTRAINT mfa_users_pkey PRIMARY KEY (user_key);


--
-- PostgreSQL database dump complete
--

\unrestrict XxPV5SLsGeK8ep280OkNxCtzcYN2qsc9BRfO3uzlNQj8uthYiBD5WRu68hyVgsC

