nidus-sync/db/migrations/00040_organization_slug.sql

5 lines
132 B
MySQL
Raw Normal View History

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