forked from wrenn/wrenn
Reviewed-on: wrenn/sandbox#2 Co-authored-by: pptx704 <rafeed@omukk.dev> Co-committed-by: pptx704 <rafeed@omukk.dev>
12 lines
233 B
SQL
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;
|