Skip to content

Instantly share code, notes, and snippets.

@carols10cents
Created August 30, 2016 22:07
Show Gist options
  • Save carols10cents/d32de10897f9019d1114dad593e13e68 to your computer and use it in GitHub Desktop.
Save carols10cents/d32de10897f9019d1114dad593e13e68 to your computer and use it in GitHub Desktop.
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.6beta2
-- Dumped by pg_dump version 9.6beta2
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
SET search_path = public, pg_catalog;
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY users (id, email, gh_access_token, api_token, gh_login, name, gh_avatar, gh_id) FROM stdin;
3 \N notreal notreal carols10cents Carol (Nichols || Goulding) https://avatars.githubusercontent.com/u/193874?v=3 193874
4 \N alsonotreal alsonotreal wlonk Kit La Touche https://avatars3.githubusercontent.com/u/925990?v=3 925990
\.
--
-- Data for Name: crate_owners; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY crates (id, name, max_version) FROM stdin;
5438 zopfli 0.3.0
5441 something 1.0.0
5442 joint_ownership 0.5.3
\.
--
-- Name: crates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('packages_id_seq', 5442, true);
--
-- Data for Name: crate_owners; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY crate_owners (id, crate_id, owner_id, created_at, created_by, deleted, updated_at, owner_kind) FROM stdin;
4 5438 3 2016-08-30 14:02:58.875959 3 f 2016-08-30 14:02:58.875959 0
5 5441 4 2016-08-30 17:47:16.514772 4 f 2016-08-30 17:47:16.514772 0
6 5442 4 2016-08-30 17:47:25.752357 4 f 2016-08-30 17:47:25.752357 0
7 5442 3 2016-08-30 17:47:32.787215 4 f 2016-08-30 17:47:32.787215 0
\.
--
-- Name: crate_owners_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('crate_owners_id_seq', 7, true);
--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('users_id_seq', 4, true);
--
-- Data for Name: versions; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY versions (id, crate_id, num) FROM stdin;
29606 5438 0.3.0
29620 5441 1.0.0
29621 5442 0.5.3
\.
--
-- Name: versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('versions_id_seq', 29621, true);
--
-- Data for Name: version_authors; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY version_authors (id, version_id, user_id, name) FROM stdin;
1 29606 3 carols10cents
4 29620 4 wlonk
5 29621 4 wlonk
\.
--
-- Name: version_authors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('version_authors_id_seq', 5, true);
--
-- PostgreSQL database dump complete
--
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment