adding percentile fixtures

This commit is contained in:
Andy Eschbacher 2016-04-14 14:26:19 -04:00
parent 3468d6e5e9
commit 874a397d3b
2 changed files with 147 additions and 0 deletions

View File

@ -0,0 +1,17 @@
CREATE TABLE IF NOT EXISTS obs_11ee8b82c877c073438bc935a91d3dfccef875d1 (
cartodb_id integer,
the_geom geometry(Geometry,4326),
the_geom_webmercator geometry(Geometry,3857),
geoid text,
x10 text,
x2 text,
x31 text,
x55 text
);
INSERT INTO obs_11ee8b82c877c073438bc935a91d3dfccef875d1 (cartodb_id, the_geom, the_geom_webmercator, geoid, x10, x2, x31, x55) VALUES (2150, NULL, NULL, '36047048500', 'Wealthy, urban without Kids', '8', '15', '1');
CREATE SCHEMA IF NOT EXISTS observatory;
ALTER TABLE obs_11ee8b82c877c073438bc935a91d3dfccef875d1 SET SCHEMA observatory;

File diff suppressed because one or more lines are too long