Data license: Apache License 2.0 · Data source: tests/fixtures.py
This data as JSON, CSV (advanced)
pk | planet_int | on_earth | state | city_id | neighborhood |
---|---|---|---|---|---|
11 | 1 | 1 | MI | Detroit 3 | Downtown |
12 | 1 | 1 | MI | Detroit 3 | Greektown |
13 | 1 | 1 | MI | Detroit 3 | Corktown |
14 | 1 | 1 | MI | Detroit 3 | Mexicantown |
CREATE TABLE facetable ( pk integer primary key, planet_int integer, on_earth integer, state text, city_id integer, neighborhood text, FOREIGN KEY ("city_id") REFERENCES [facet_cities](id) )