Skip to content

Instantly share code, notes, and snippets.

@wboykinm
Created July 12, 2016 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wboykinm/d943de004aaf27d7d3b9f854cb32a995 to your computer and use it in GitHub Desktop.
Save wboykinm/d943de004aaf27d7d3b9f854cb32a995 to your computer and use it in GitHub Desktop.
--
-- Name: usa_bg; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE usa_bg (
ogc_fid integer,
the_geom geometry(MultiPolygon,4326),
geoid10 text,
zip_cluster text,
state_id text
);
ALTER TABLE usa_bg OWNER TO postgres;
--
-- Name: usa_blocks; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE usa_blocks (
ogc_fid integer,
the_geom geometry(MultiPolygon,4326),
geoid10 text,
zip_cluster text,
state_id text
);
ALTER TABLE usa_blocks OWNER TO postgres;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment