From d645dbbd2544f42adf9bc84a174b3ad5aa04b82f Mon Sep 17 00:00:00 2001 From: corbpie Date: Sun, 6 Mar 2022 03:07:34 +1100 Subject: [PATCH] Delete update1.4to1.5.sql --- update1.4to1.5.sql | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 update1.4to1.5.sql diff --git a/update1.4to1.5.sql b/update1.4to1.5.sql deleted file mode 100644 index 0c1285c..0000000 --- a/update1.4to1.5.sql +++ /dev/null @@ -1,20 +0,0 @@ -CREATE TABLE IF NOT EXISTS `auth` -( - `user` varchar(64) NOT NULL, - `pass` varchar(255) DEFAULT NULL, - `token` char(32) DEFAULT NULL, - `login_count` int(11) DEFAULT 0, - `login_fails` int(11) DEFAULT 0, - `last_login` datetime DEFAULT NULL, - `last_fail` datetime DEFAULT NULL, - PRIMARY KEY (`user`) -) ENGINE = InnoDB - DEFAULT CHARSET = utf8mb4; - -CREATE TABLE IF NOT EXISTS `login_attempts` -( - `user` varchar(124) DEFAULT NULL, - `ip` varchar(124) DEFAULT NULL, - `datetime` datetime DEFAULT current_timestamp() -) ENGINE = InnoDB - DEFAULT CHARSET = utf8mb4; \ No newline at end of file