nidus-sync/db/migrations/00040_organization_slug.sql
Eli Ribble f549243c10
Render organization logos by 'slug'
This avoids leaking org IDs in the URL, and makes it possible to have a
district-specific root mock that works in both dev and prod.
2026-01-24 19:13:55 +00:00

4 lines
132 B
SQL

-- +goose Up
ALTER TABLE organization ADD COLUMN slug VARCHAR(24) UNIQUE;
-- +goose Down
ALTER TABLE organization DROP COLUMN slug;