Add boolean type to DB Manager PostGIS provider

This commit is contained in:
Stephen Knox 2019-05-02 17:59:10 +01:00 committed by Nyall Dawson
parent 12de739adb
commit a5cc1842a2

View File

@ -234,7 +234,8 @@ class PostGisDBConnector(DBConnector):
"serial", "bigserial", # auto-incrementing ints
"real", "double precision", "numeric", # floats
"varchar", "varchar(255)", "char(20)", "text", # strings
"date", "time", "timestamp" # date/time
"date", "time", "timestamp", # date/time
"boolean" # bool
]
def getDatabasePrivileges(self):