From c4b98a09ed64b9b153d1c32931e0d5398335e7f1 Mon Sep 17 00:00:00 2001 From: juancwu <46619361+juancwu@users.noreply.github.com> Date: Sun, 11 Jan 2026 20:46:26 -0500 Subject: [PATCH] delete sql migration --- migrations/00001_init.sql | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 migrations/00001_init.sql diff --git a/migrations/00001_init.sql b/migrations/00001_init.sql deleted file mode 100644 index cbb222e..0000000 --- a/migrations/00001_init.sql +++ /dev/null @@ -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