forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
10 lines
374 B
SQL
10 lines
374 B
SQL
CREATE TABLE `vhosts_secure`(
|
|
vhost_secure_id bigint(20) NOT NULL AUTO_INCREMENT,
|
|
vhost_secure_username varchar(255) NOT NULL,
|
|
vhost_secure_password varchar(255) NOT NULL,
|
|
vhost_secure_realm varchar(255) NOT NULL
|
|
PRIMARY KEY (vhost_secure_id),
|
|
INDEX i_username (vhost_secure_username),
|
|
INDEX i_password (vhost_secure_password),
|
|
INDEX i_realm (vhost_secure_realm)
|
|
);
|