From f3934d40e7fef6705236d7bc66c66650cc3992cd Mon Sep 17 00:00:00 2001 From: Benjamin Kraft Date: Tue, 25 Jun 2024 01:09:09 +0200 Subject: [PATCH] update db structure --- structure.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/structure.sql b/structure.sql index b0f9e6e..bbf6a8d 100644 --- a/structure.sql +++ b/structure.sql @@ -3,7 +3,7 @@ -- https://www.phpmyadmin.net/ -- -- Host: localhost --- Generation Time: Jun 15, 2024 at 11:21 PM +-- Generation Time: Jun 25, 2024 at 01:07 AM -- Server version: 8.0.37-0ubuntu0.22.04.3 -- PHP Version: 8.1.29 @@ -63,6 +63,7 @@ CREATE TABLE IF NOT EXISTS `elo_entries` ( CREATE TABLE IF NOT EXISTS `updates` ( `id` int NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, + `status` enum('RUNNING','COMPLETE') CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT 'RUNNING', PRIMARY KEY (`id`), KEY `date` (`date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;