Files
Homarr/packages/db/migrations/sqlite/0032_add_trusted_certificate_hostnames.sql

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`)
);