From 9e86c3e9776ce091723edaa992a43d30ce559a08 Mon Sep 17 00:00:00 2001 From: Jay Date: Sat, 17 Jun 2017 21:01:25 +0800 Subject: [PATCH] remove database schema auto_increment --- database/lora.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/lora.sql b/database/lora.sql index 8bb93f4..dd182aa 100644 --- a/database/lora.sql +++ b/database/lora.sql @@ -39,7 +39,7 @@ CREATE TABLE `user` ( `ctime` timestamp NOT NULL DEFAULT current_timestamp(), `mtime` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`uid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;