mirror of
https://github.com/MeshTender/MeshTender.git
synced 2026-09-10 13:45:42 +00:00
8 lines
262 B
SQL
8 lines
262 B
SQL
-- +goose Up
|
|
-- Freeform region/location for an organization (e.g. "Buffalo, NY"), shown on
|
|
-- the org page and public directory.
|
|
ALTER TABLE organizations ADD COLUMN region TEXT NOT NULL DEFAULT '';
|
|
|
|
-- +goose Down
|
|
ALTER TABLE organizations DROP COLUMN region;
|