From b31b82bd66cb44c80f1c948c58d78ba402488a13 Mon Sep 17 00:00:00 2001 From: Nate Date: Tue, 2 Apr 2019 09:53:57 -0600 Subject: [PATCH] Schema Class: Update compatibility with timestamptz field types. --- resources/classes/schema.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/classes/schema.php b/resources/classes/schema.php index a86ce65f03..483366c081 100644 --- a/resources/classes/schema.php +++ b/resources/classes/schema.php @@ -685,6 +685,8 @@ if (!class_exists('schema')) { //field type has not changed } elseif ($db_field_type = "timestamp without time zone" && strtolower($field_type) == "datetime") { //field type has not changed + } elseif ($db_field_type = "timestamp with time zone" && strtolower($field_type) == "timestamptz") { + //field type has not changed } elseif ($db_field_type = "integer" && strtolower($field_type) == "numeric") { //field type has not changed } elseif ($db_field_type = "character" && strtolower($field_type) == "char") {