-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinit.sql
56 lines (43 loc) · 1.23 KB
/
init.sql
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
--
-- PostgreSQL database dump
--
-- Dumped from database version 10.13
-- Dumped by pg_dump version 10.13
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;
--
-- Name: alice_abbreviations; Type: TABLE; Schema: public; Owner: kinderminer
--
CREATE TABLE public.alice_abbreviations (
sequential_id integer,
pubmed_id text,
publication_year text,
long_form_id integer,
short_form_id integer,
long_form text,
short_form text
);
ALTER TABLE public.alice_abbreviations OWNER TO kinderminer;
--
-- Name: alice_abbreviations_pubmed_id_idx; Type: INDEX; Schema: public; Owner: kinderminer
--
CREATE INDEX alice_abbreviations_pubmed_id_idx ON public.alice_abbreviations USING btree (pubmed_id);
CREATE TABLE public.alice_versions (
id SERIAL,
md5 text,
filename text
);
ALTER TABLE public.alice_versions OWNER TO kinderminer;
--
-- PostgreSQL database dump complete
--