2022-06-06 09:42:28 -04:00
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS has_extension boolean null;
|
2022-06-06 06:48:39 -04:00
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS extension_year smallint;
|
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS developer_type varchar;
|
2022-06-10 06:14:45 -04:00
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS developer_source_link text[];
|
2022-06-06 10:41:39 -04:00
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS designers text[];
|
2022-06-06 06:48:39 -04:00
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS designers_source_link text[];
|
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS lead_designer_type varchar;
|
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS designer_awards boolean null;
|
2022-06-10 06:37:52 -04:00
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS awards_source_link text[];
|
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS builder text[];
|
2022-06-10 08:13:23 -04:00
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS builder_source_link text[];
|
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS other_team text[];
|
|
|
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS other_team_source_link text[];
|