-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfed_res_2011.sql
More file actions
64 lines (48 loc) · 1.58 KB
/
fed_res_2011.sql
File metadata and controls
64 lines (48 loc) · 1.58 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 client_encoding = 'UTF8';
SET standard_conforming_strings = off;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET escape_string_warning = off;
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: fed_res_2011; Type: TABLE; Schema: public; Owner: canada; Tablespace:
--
CREATE TABLE fed_res_2011 (
fed_num integer NOT NULL,
ed_namee character varying(128),
ed_namef character varying(128),
pd_num character varying(16) NOT NULL,
pd_name character varying(512),
void boolean,
nopoll boolean,
mergedwith character varying(16),
nb_rejected integer,
nb_electors integer,
cand_lastname character varying(128) NOT NULL,
cand_middlename character varying(128),
cand_firstname character varying(128) NOT NULL,
party_namee character varying(64) NOT NULL,
party_namef character varying(64) NOT NULL,
incumbent boolean,
elected boolean,
nb_votes integer NOT NULL
);
ALTER TABLE public.fed_res_2011 OWNER TO canada;
--
-- Name: fed_res_2011_pkey; Type: CONSTRAINT; Schema: public; Owner: canada; Tablespace:
--
ALTER TABLE ONLY fed_res_2011
ADD CONSTRAINT fed_res_2011_pkey PRIMARY KEY (fed_num, pd_num, party_namee, cand_lastname, cand_firstname);
--
-- Name: fed_res_2011_votes_idx; Type: INDEX; Schema: public; Owner: canada; Tablespace:
--
CREATE INDEX fed_res_2011_votes_idx ON fed_res_2011 USING btree (fed_num, pd_num, nb_votes DESC);
--
-- PostgreSQL database dump complete
--