mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-31 11:49:14 +01:00
7 lines
174 B
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`)
|
|
);
|