-- -- PostgreSQL database dump -- \restrict TBO5p6lvhgQlVM1tXKahkrIRa7cGMBX5CXBrOfkVAQUoFQjgAIX2DM2f2jG00du -- Dumped from database version 16.14 (Debian 16.14-1.pgdg13+1) -- Dumped by pg_dump version 16.14 (Debian 16.14-1.pgdg13+1) 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; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: transactions; Type: TABLE; Schema: public; Owner: budget_user -- CREATE TABLE public.transactions ( id integer NOT NULL, title text NOT NULL, amount numeric NOT NULL, type text NOT NULL, created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.transactions OWNER TO budget_user; -- -- Name: transactions_id_seq; Type: SEQUENCE; Schema: public; Owner: budget_user -- CREATE SEQUENCE public.transactions_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.transactions_id_seq OWNER TO budget_user; -- -- Name: transactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: budget_user -- ALTER SEQUENCE public.transactions_id_seq OWNED BY public.transactions.id; -- -- Name: transactions id; Type: DEFAULT; Schema: public; Owner: budget_user -- ALTER TABLE ONLY public.transactions ALTER COLUMN id SET DEFAULT nextval('public.transactions_id_seq'::regclass); -- -- Data for Name: transactions; Type: TABLE DATA; Schema: public; Owner: budget_user -- COPY public.transactions (id, title, amount, type, created_at) FROM stdin; 1 asd 4 expense 2026-05-19 06:56:50.824855 \. -- -- Name: transactions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: budget_user -- SELECT pg_catalog.setval('public.transactions_id_seq', 1, true); -- -- Name: transactions transactions_pkey; Type: CONSTRAINT; Schema: public; Owner: budget_user -- ALTER TABLE ONLY public.transactions ADD CONSTRAINT transactions_pkey PRIMARY KEY (id); -- -- PostgreSQL database dump complete -- \unrestrict TBO5p6lvhgQlVM1tXKahkrIRa7cGMBX5CXBrOfkVAQUoFQjgAIX2DM2f2jG00du