colouring-montreal/migrations/029.team.up.sql

14 lines
1014 B
MySQL
Raw Normal View History

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 08:38:54 -04:00
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS developer_name text[];
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[];
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[];