-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotebook.sql
More file actions
64 lines (45 loc) · 1.83 KB
/
notebook.sql
File metadata and controls
64 lines (45 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: drawings_notebook; Type: TABLE; Schema: public; Owner: mmahnken; Tablespace:
--
CREATE TABLE drawings_notebook (
created timestamp with time zone NOT NULL,
modified timestamp with time zone NOT NULL,
id character varying(20) NOT NULL,
title character varying(300) NOT NULL,
description text NOT NULL,
front_cover character varying(100) NOT NULL,
back_cover character varying(100) NOT NULL,
drawn_at date NOT NULL
);
ALTER TABLE drawings_notebook OWNER TO mmahnken;
--
-- Data for Name: drawings_notebook; Type: TABLE DATA; Schema: public; Owner: mmahnken
--
COPY drawings_notebook (created, modified, id, title, description, front_cover, back_cover, drawn_at) FROM stdin;
2016-09-03 13:06:07.00444-07 2016-09-03 14:59:11.350038-07 in-between-galaxies In Between Galaxies notebooks/frontcover.jpg notebooks/IMG_2238.JPG 2016-06-01
2016-09-03 12:55:46.16559-07 2016-09-03 15:01:35.693547-07 square-to-be-hip It's Square to be Hip During a trip to Milwaukee, Wisconsin notebooks/square-cover.JPG notebooks/IMG_2236.JPG 2015-06-19
\.
--
-- Name: drawings_notebook_pkey; Type: CONSTRAINT; Schema: public; Owner: mmahnken; Tablespace:
--
ALTER TABLE ONLY drawings_notebook
ADD CONSTRAINT drawings_notebook_pkey PRIMARY KEY (id);
--
-- Name: drawings_notebook_id_f6e77aac_like; Type: INDEX; Schema: public; Owner: mmahnken; Tablespace:
--
CREATE INDEX drawings_notebook_id_f6e77aac_like ON drawings_notebook USING btree (id varchar_pattern_ops);
--
-- PostgreSQL database dump complete
--