diff --git a/internal/pkg/storage/sqlite.go b/internal/pkg/storage/sqlite.go index 59af8e0..ff4ec5e 100755 --- a/internal/pkg/storage/sqlite.go +++ b/internal/pkg/storage/sqlite.go @@ -63,11 +63,6 @@ enable_rotation BOOLEAN DEFAULT 0, renew_before INTEGER DEFAULT 0 ); - -- Add ALTER TABLE statement for existing databases to add the full_chain_pem column - PRAGMA foreign_keys = OFF; -- Disable foreign key checks for schema modification - ALTER TABLE certificates ADD COLUMN full_chain_pem BLOB DEFAULT ''; - PRAGMA foreign_keys = ON; -- Re-enable foreign key checks - CREATE TABLE IF NOT EXISTS extension_configs ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT UNIQUE NOT NULL,