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