Files
homarr/packages/db/migrations/sqlite/0032_add_trusted_certificate_hostnames.sql
2026-01-15 21:54:44 +01:00

7 lines
174 B
SQL

CREATE TABLE `trusted_certificate_hostname` (
`hostname` text NOT NULL,
`thumbprint` text NOT NULL,
`certificate` text NOT NULL,
PRIMARY KEY(`hostname`, `thumbprint`)
);