[Web] Set appointment c_uid to 1000

master
andryyy 2020-05-12 18:29:24 +02:00
parent b5502fb52a
commit a37b4c1b1c
No known key found for this signature in database
GPG Key ID: 8EC34FF2794E25EF
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ function init_db_schema() {
try { try {
global $pdo; global $pdo;
$db_version = "19042020_1437"; $db_version = "12052020_1828";
$stmt = $pdo->query("SHOW TABLES LIKE 'versions'"); $stmt = $pdo->query("SHOW TABLES LIKE 'versions'");
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC)); $num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
@ -747,7 +747,7 @@ function init_db_schema() {
"cols" => array( "cols" => array(
"c_folder_id" => "INT NOT NULL", "c_folder_id" => "INT NOT NULL",
"c_name" => "VARCHAR(255) NOT NULL", "c_name" => "VARCHAR(255) NOT NULL",
"c_uid" => "VARCHAR(255) NOT NULL", "c_uid" => "VARCHAR(1000) NOT NULL",
"c_startdate" => "INT", "c_startdate" => "INT",
"c_enddate" => "INT", "c_enddate" => "INT",
"c_cycleenddate" => "INT", "c_cycleenddate" => "INT",