We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
2 parents 48b9ccb + 013f9e9 commit b4b0155Copy full SHA for b4b0155
src/providers/postgres/qgspostgresprovider.cpp
@@ -2788,7 +2788,13 @@ bool QgsPostgresProvider::convertField( QgsField &field )
2788
break;
2789
2790
case QVariant::DateTime:
2791
+ fieldType = "timestamp without time zone";
2792
+ break;
2793
+
2794
case QVariant::Time:
2795
+ fieldType = "time";
2796
2797
2798
case QVariant::String:
2799
fieldType = "varchar";
2800
fieldPrec = -1;
0 commit comments