Update schema.php

This commit is contained in:
FusionPBX 2018-02-23 10:11:34 -07:00 committed by GitHub
parent 3a350402c9
commit 3dbc6e9936
1 changed files with 0 additions and 2 deletions

View File

@ -143,7 +143,6 @@ if (!class_exists('schema')) {
//check if a column exists
public function column_exists ($db_name, $table_name, $column_name) {
global $display_type;
if ($this->db_type == "sqlite") {
$table_info = $this->table_info($db_name, $table_name);
@ -305,7 +304,6 @@ if (!class_exists('schema')) {
//database column exists
private function db_column_exists ($db_type, $db_name, $table_name, $column_name) {
global $display_type;
if ($db_type == "sqlite") {
$table_info = $this->db_table_info($db_name, $db_type, $table_name);