|
| 1 | +CREATE TABLE "housing_growth_cd" ( |
| 2 | + "geography_id" char(3) PRIMARY KEY NOT NULL, |
| 3 | + "units_2020_census" integer NOT NULL, |
| 4 | + "units_2020" integer NOT NULL, |
| 5 | + "completed_units_previous_10_years" integer NOT NULL, |
| 6 | + "completed_units_since_census" integer NOT NULL, |
| 7 | + "units_current" integer NOT NULL, |
| 8 | + "projected_completed_units_next_10_years" integer NOT NULL, |
| 9 | + "projected_units_in_10_years" integer NOT NULL |
| 10 | +); |
| 11 | +--> statement-breakpoint |
| 12 | +CREATE TABLE "housing_growth_nta" ( |
| 13 | + "geography_id" char(6) PRIMARY KEY NOT NULL, |
| 14 | + "units_2020_census" integer NOT NULL, |
| 15 | + "units_2020" integer NOT NULL, |
| 16 | + "completed_units_previous_10_years" integer NOT NULL, |
| 17 | + "completed_units_since_census" integer NOT NULL, |
| 18 | + "units_current" integer NOT NULL, |
| 19 | + "projected_completed_units_next_10_years" integer NOT NULL, |
| 20 | + "projected_units_in_10_years" integer NOT NULL |
| 21 | +); |
0 commit comments