8 lines
269 B
SQL
8 lines
269 B
SQL
-- migrate:up
|
|
-- Freeform site plan for the event, drawn on a map: a GeoJSON FeatureCollection.
|
|
ALTER TABLE events
|
|
ADD COLUMN plan JSONB NOT NULL DEFAULT '{"type": "FeatureCollection", "features": []}'::jsonb;
|
|
|
|
-- migrate:down
|
|
ALTER TABLE events DROP COLUMN plan;
|
|
|