1
0
forked from wrenn/wrenn
Files
wrenn-releases/db/migrations/20260316223629_host_mtls.sql
2026-03-22 21:01:23 +00:00

12 lines
233 B
SQL

-- +goose Up
ALTER TABLE hosts
ADD COLUMN cert_fingerprint TEXT,
ADD COLUMN mtls_enabled BOOLEAN NOT NULL DEFAULT FALSE;
-- +goose Down
ALTER TABLE hosts
DROP COLUMN cert_fingerprint,
DROP COLUMN mtls_enabled;