From a37b4c1b1ccb7192be471dfb4e5aaf313eb124ef Mon Sep 17 00:00:00 2001 From: andryyy Date: Tue, 12 May 2020 18:29:24 +0200 Subject: [PATCH] [Web] Set appointment c_uid to 1000 --- data/web/inc/init_db.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/web/inc/init_db.inc.php b/data/web/inc/init_db.inc.php index e8f47111..bf053cab 100644 --- a/data/web/inc/init_db.inc.php +++ b/data/web/inc/init_db.inc.php @@ -3,7 +3,7 @@ function init_db_schema() { try { global $pdo; - $db_version = "19042020_1437"; + $db_version = "12052020_1828"; $stmt = $pdo->query("SHOW TABLES LIKE 'versions'"); $num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC)); @@ -747,7 +747,7 @@ function init_db_schema() { "cols" => array( "c_folder_id" => "INT NOT NULL", "c_name" => "VARCHAR(255) NOT NULL", - "c_uid" => "VARCHAR(255) NOT NULL", + "c_uid" => "VARCHAR(1000) NOT NULL", "c_startdate" => "INT", "c_enddate" => "INT", "c_cycleenddate" => "INT",