Files
Work/Backend/db/migrations/000003_installation_name.sql
2026-06-19 22:47:12 +01:00

10 lines
171 B
SQL

-- +goose Up
ALTER TABLE installations
ADD COLUMN IF NOT EXISTS name TEXT NOT NULL DEFAULT '';
-- +goose Down
ALTER TABLE installations
DROP COLUMN IF EXISTS name;