-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgres.dump
101 lines (71 loc) · 2.23 KB
/
postgres.dump
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.15 (Homebrew)
-- Dumped by pg_dump version 14.15 (Homebrew)
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;
--
-- Name: enum_Gadgets_status; Type: TYPE; Schema: public; Owner: saran
--
CREATE TYPE public."enum_Gadgets_status" AS ENUM (
'Available',
'Deployed',
'Destroyed',
'Decommissioned'
);
ALTER TYPE public."enum_Gadgets_status" OWNER TO saran;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: Gadgets; Type: TABLE; Schema: public; Owner: saran
--
CREATE TABLE public."Gadgets" (
id uuid NOT NULL,
codename character varying(255) NOT NULL,
status public."enum_Gadgets_status" DEFAULT 'Available'::public."enum_Gadgets_status",
"decommissionedAt" timestamp with time zone,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public."Gadgets" OWNER TO saran;
--
-- Name: SequelizeMeta; Type: TABLE; Schema: public; Owner: saran
--
CREATE TABLE public."SequelizeMeta" (
name character varying(255) NOT NULL
);
ALTER TABLE public."SequelizeMeta" OWNER TO saran;
--
-- Data for Name: Gadgets; Type: TABLE DATA; Schema: public; Owner: saran
--
COPY public."Gadgets" (id, codename, status, "decommissionedAt", "createdAt", "updatedAt") FROM stdin;
\.
--
-- Data for Name: SequelizeMeta; Type: TABLE DATA; Schema: public; Owner: saran
--
COPY public."SequelizeMeta" (name) FROM stdin;
20250129140342-create-gadgets.js
20250130052106-create-gadget.js
\.
--
-- Name: Gadgets Gadgets_pkey; Type: CONSTRAINT; Schema: public; Owner: saran
--
ALTER TABLE ONLY public."Gadgets"
ADD CONSTRAINT "Gadgets_pkey" PRIMARY KEY (id);
--
-- Name: SequelizeMeta SequelizeMeta_pkey; Type: CONSTRAINT; Schema: public; Owner: saran
--
ALTER TABLE ONLY public."SequelizeMeta"
ADD CONSTRAINT "SequelizeMeta_pkey" PRIMARY KEY (name);
--
-- PostgreSQL database dump complete
--