From f972b37e398443ad7fbf959086dfc2b3b9dda636 Mon Sep 17 00:00:00 2001 From: wang_chengh <13383929+wang_chengh@user.noreply.gitee.com> Date: Fri, 22 Sep 2023 07:10:36 +0000 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20www/cgi-?= =?UTF-8?q?bin/creat=5Ftable.sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- www/cgi-bin/creat_table.sql | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 www/cgi-bin/creat_table.sql diff --git a/www/cgi-bin/creat_table.sql b/www/cgi-bin/creat_table.sql deleted file mode 100644 index ec30347..0000000 --- a/www/cgi-bin/creat_table.sql +++ /dev/null @@ -1,20 +0,0 @@ --- 创建管理员登录表 -CREATE database if NOT EXISTS router; -USE router; --- 创建用户登录密码表 -CREATE TABLE if not exists users ( - id INT AUTO_INCREMENT PRIMARY KEY, - username VARCHAR(50) NOT NULL, - password VARCHAR(255) NOT NULL -); --- 创建ARP映射表 -CREATE TABLE if not exists ip_mac( - id INT AUTO_INCREMENT PRIMARY KEY, - ip VARCHAR(50) NOT NULL, - mac VARCHAR(50) NOT NULL -); --- 创建防火墙表 -CREATE TABLE if not exists ip_fw( - id INT AUTO_INCREMENT PRIMARY KEY, - ip VARCHAR(50) NOT NULL -); \ No newline at end of file