delete sql migration

This commit is contained in:
juancwu 2026-01-11 20:46:26 -05:00
commit c4b98a09ed

View file

@ -1,16 +0,0 @@
-- +goose Up
-- +goose StatementBegin
CREATE TABLE IF NOT EXISTS keys (
id INTEGER PRIMARY KEY AUTOINCREMENT,
host_pattern TEXT NOT NULL,
user_pattern TEXT NOT NULL,
encrypted_pem BLOB NOT NULL,
comment TEXT,
UNIQUE (user_pattern, host_pattern)
);
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DROP TABLE IF EXISTS keys;
-- +goose StatementEnd