From 66a4c22f73454ea4b7bfe64f7125af69259a31b0 Mon Sep 17 00:00:00 2001 From: xiaomlove Date: Sun, 2 May 2021 17:32:25 +0800 Subject: [PATCH] update dbstructure.sql --- _db/dbstructure_v1.6.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_db/dbstructure_v1.6.sql b/_db/dbstructure_v1.6.sql index b1d4281e..efaeada4 100644 --- a/_db/dbstructure_v1.6.sql +++ b/_db/dbstructure_v1.6.sql @@ -745,6 +745,7 @@ CREATE TABLE `exams` ( `filters` text COLLATE utf8mb4_unicode_ci, `indexes` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', + `is_discovered` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) @@ -2667,4 +2668,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2021-04-30 1:17:11 +-- Dump completed on 2021-05-02 17:30:56