mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-31 03:39:21 +01:00
7 lines
174 B
MySQL
7 lines
174 B
MySQL
|
|
CREATE TABLE `trusted_certificate_hostname` (
|
||
|
|
`hostname` text NOT NULL,
|
||
|
|
`thumbprint` text NOT NULL,
|
||
|
|
`certificate` text NOT NULL,
|
||
|
|
PRIMARY KEY(`hostname`, `thumbprint`)
|
||
|
|
);
|