diff --git a/plugins/generic/databases.py b/plugins/generic/databases.py index 8c3633957..24507c236 100644 --- a/plugins/generic/databases.py +++ b/plugins/generic/databases.py @@ -640,7 +640,7 @@ class Databases: colType = inject.getValue(query, inband=False, error=False) if Backend.isDbms(DBMS.FIREBIRD): - colType = firebirdTypes.get(colType, colType) + colType = FIREBIRD_TYPES.get(colType, colType) column = safeSQLIdentificatorNaming(column) columns[column] = colType