summaryrefslogtreecommitdiff
path: root/www/lighttpd/files/mysql_auth.sql
diff options
context:
space:
mode:
Diffstat (limited to 'www/lighttpd/files/mysql_auth.sql')
-rw-r--r--www/lighttpd/files/mysql_auth.sql10
1 files changed, 0 insertions, 10 deletions
diff --git a/www/lighttpd/files/mysql_auth.sql b/www/lighttpd/files/mysql_auth.sql
deleted file mode 100644
index 5b1a25572225..000000000000
--- a/www/lighttpd/files/mysql_auth.sql
+++ /dev/null
@@ -1,10 +0,0 @@
-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)
-);