From 83dc43ba5feff720cff1f9ca056b990757ec0e6c Mon Sep 17 00:00:00 2001 From: jakani24 Date: Thu, 8 Feb 2024 20:26:36 +0100 Subject: [PATCH] Update create_db.php --- src/server/cyberhex-code/install/create_db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/cyberhex-code/install/create_db.php b/src/server/cyberhex-code/install/create_db.php index 388fec3..0995622 100644 --- a/src/server/cyberhex-code/install/create_db.php +++ b/src/server/cyberhex-code/install/create_db.php @@ -117,7 +117,7 @@ // Create rtp_included table $sql = "CREATE TABLE IF NOT EXISTS rtp_included ( id INT AUTO_INCREMENT PRIMARY KEY, - path VARCHAR(255) NOT NULL UNIQUE, + path VARCHAR(255) NOT NULL UNIQUE )"; if ($conn->query($sql) === TRUE) { @@ -133,7 +133,7 @@ // Create rtp_excluded table $sql = "CREATE TABLE IF NOT EXISTS rtp_excluded ( id INT AUTO_INCREMENT PRIMARY KEY, - path VARCHAR(255) NOT NULL UNIQUE, + path VARCHAR(255) NOT NULL UNIQUE )"; if ($conn->query($sql) === TRUE) {