Docker-NetworkingDataPersis.../db/backup/mydb_backup_2025-08-11_10-4...

87 lines
1.8 KiB
SQL

--
-- PostgreSQL database dump
--
-- Dumped from database version 13.21 (Debian 13.21-1.pgdg120+1)
-- Dumped by pg_dump version 13.21 (Debian 13.21-1.pgdg120+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: users; Type: TABLE; Schema: public; Owner: user
--
CREATE TABLE public.users (
id integer NOT NULL,
name character varying(100),
email character varying(100)
);
ALTER TABLE public.users OWNER TO "user";
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: user
--
CREATE SEQUENCE public.users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO "user";
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: user
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: user
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: user
--
COPY public.users (id, name, email) FROM stdin;
1 Syifa syifa@example.com
2 Maulidya maulidya@example.com
\.
--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: user
--
SELECT pg_catalog.setval('public.users_id_seq', 2, true);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: user
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);