Skip to content

Commit a4484b2

Browse files
committed
dbmanager: fix #6511
1 parent 6f1b27e commit a4484b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/db_manager/db_plugins/spatialite/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def fieldTypes(self):
121121
return [
122122
"integer", "bigint", "smallint", # integers
123123
"real", "double", "float", "numeric", # floats
124-
"varchar(n)", "character(n)", "text", # strings
124+
"varchar", "varchar(n)", "character(n)", "text", # strings
125125
"date", "datetime" # date/time
126126
]
127127

0 commit comments

Comments
 (0)