Projekt

Obecné

Profil

Stáhnout (1.82 KB) Statistiky
| Větev: | Revize:
1 5aceeb68 Tomáš Pašek
--
2
-- PostgreSQL database dump
3
--
4
5
-- Dumped from database version 10.16
6
-- Dumped by pg_dump version 10.16
7
8
-- Started on 2021-04-24 21:33:05
9
10
SET statement_timeout = 0;
11
SET lock_timeout = 0;
12
SET idle_in_transaction_session_timeout = 0;
13
SET client_encoding = 'UTF8';
14
SET standard_conforming_strings = on;
15
SELECT pg_catalog.set_config('search_path', '', false);
16
SET check_function_bodies = false;
17
SET xmloption = content;
18
SET client_min_messages = warning;
19
SET row_security = off;
20
21
SET default_tablespace = '';
22
23
SET default_with_oids = false;
24
25
--
26
-- TOC entry 205 (class 1259 OID 24745)
27
-- Name: changes; Type: TABLE; Schema: public; Owner: postgres
28
--
29
30
CREATE TABLE public.changes (
31
    id integer NOT NULL,
32
    wordform_id integer NOT NULL,
33
    message character varying NOT NULL
34
);
35
36
37
ALTER TABLE public.changes OWNER TO postgres;
38
39
--
40
-- TOC entry 206 (class 1259 OID 24753)
41
-- Name: changes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
42
--
43
44
ALTER TABLE public.changes ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
45
    SEQUENCE NAME public.changes_id_seq
46
    START WITH 1
47
    INCREMENT BY 1
48
    NO MINVALUE
49
    NO MAXVALUE
50
    CACHE 1
51
);
52
53
54
--
55
-- TOC entry 2818 (class 0 OID 24745)
56
-- Dependencies: 205
57
-- Data for Name: changes; Type: TABLE DATA; Schema: public; Owner: postgres
58
--
59
60
COPY public.changes (id, wordform_id, message) FROM stdin;
61
\.
62
63
64
--
65
-- TOC entry 2825 (class 0 OID 0)
66
-- Dependencies: 206
67
-- Name: changes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
68
--
69
70
SELECT pg_catalog.setval('public.changes_id_seq', 1, true);
71
72
73
--
74
-- TOC entry 2696 (class 2606 OID 24752)
75
-- Name: changes changes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
76
--
77
78
ALTER TABLE ONLY public.changes
79
    ADD CONSTRAINT changes_pkey PRIMARY KEY (id);
80
81
82
-- Completed on 2021-04-24 21:33:05
83
84
--
85
-- PostgreSQL database dump complete
86
--