This commit is contained in:
Flatlogic Bot 2025-12-13 17:45:03 +00:00
parent 5565303f82
commit 0d0714bfe3

View File

@ -17,7 +17,7 @@ try {
CREATE TABLE IF NOT EXISTS `questions` (
`id` INT AUTO_INCREMENT PRIMARY KEY,
`question_text` TEXT NOT NULL,
`points` INT NOT NULL DEFAULT 5,
`score` INT NOT NULL DEFAULT 10,
`image_url` VARCHAR(255) NULL,
`created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;