-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdump.sql
More file actions
54 lines (39 loc) · 1.27 KB
/
Copy pathdump.sql
File metadata and controls
54 lines (39 loc) · 1.27 KB
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
--
-- PostgreSQL database dump
--
-- Dumped from database version 11.3
-- Dumped by pg_dump version 11.3
-- Started on 2021-05-06 21:11: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;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- TOC entry 196 (class 1259 OID 16395)
-- Name: users; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.users (
users_login character varying(20) NOT NULL,
users_password character varying(20) NOT NULL,
users_nick character varying(20) NOT NULL
);
ALTER TABLE public.users OWNER TO postgres;
--
-- TOC entry 2804 (class 0 OID 16395)
-- Dependencies: 196
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.users (users_login, users_password, users_nick) VALUES ('login1', 'pass1', 'nick1');
INSERT INTO public.users (users_login, users_password, users_nick) VALUES ('RaiMaN', '123456', 'L');
-- Completed on 2021-05-06 21:11:15
--
-- PostgreSQL database dump complete
--