36776-vm/db/setup_progress.php
Flatlogic Bot 3be446013d Initialv1
2025-12-09 00:59:40 +00:00

20 lines
548 B
PHP

<?php
require_once 'config.php';
try {
$pdo = db();
$sql = "
CREATE TABLE IF NOT EXISTS progress (
id INT AUTO_INCREMENT PRIMARY KEY,
user_id INT NOT NULL,
theme VARCHAR(255) NOT NULL,
completion_date DATE NOT NULL,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
);
";
$pdo->exec($sql);
echo "Progress table created successfully.";
} catch (PDOException $e) {
die("Could not connect to the database $dbname :" . $e->getMessage());
}