update db structure

main
Benjamin Kraft 3 months ago
parent ab4814830f
commit f3934d40e7
  1. 3
      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;

Loading…
Cancel
Save