-
Notifications
You must be signed in to change notification settings - Fork 11
/
votes.sql
44 lines (31 loc) · 899 Bytes
/
votes.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
--
-- PostgreSQL database dump
--
SET statement_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: votes; Type: TABLE; Schema: public; Owner: blackmad; Tablespace:
--
CREATE TABLE votes (
id character varying(100) NOT NULL,
label character varying(100) NOT NULL,
count integer,
source character varying(100) NOT NULL,
countyfp10 character varying(10),
statefp10 character varying(10)
);
ALTER TABLE public.votes OWNER TO blackmad;
--
-- Name: votes_pkey; Type: CONSTRAINT; Schema: public; Owner: blackmad; Tablespace:
--
ALTER TABLE ONLY votes
ADD CONSTRAINT votes_pkey PRIMARY KEY (id, label, source);
--
-- PostgreSQL database dump complete
--