Commit 45ddfc76 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Ne pas prendre en compte les colonnes cachées

parent ad89fcae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ class SchemaService extends AbstractService
        /* Récupération des colonnes des tableaux de bord */
        if ($tables) {
            $sql = "SELECT TABLE_NAME, COLUMN_NAME, NULLABLE FROM USER_TAB_COLS WHERE "
                . "TABLE_NAME IN ('" . implode("','", array_keys($tables)) . "') ORDER BY COLUMN_ID";
                . "TABLE_NAME IN ('" . implode("','", array_keys($tables)) . "') AND hidden_column = 'NO' ORDER BY COLUMN_ID";

            $d = $this->query($sql, []);