Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix bug introduced by reordering postgis table metadata info cols
Thanks jef :)
  • Loading branch information
Sandro Santilli committed Nov 2, 2012
1 parent 8e10876 commit cde8b1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/postgres/qgspgtablemodel.h
Expand Up @@ -49,9 +49,9 @@ class QgsPgTableModel : public QStandardItemModel
{
dbtmSchema = 0,
dbtmTable,
dbtmType,
dbtmGeomType,
dbtmGeomCol,
dbtmGeomType, // Data type (geometry, geography, topogeometry, ...)
dbtmType, // Spatial type (point, line, polygon, ...)
dbtmSrid,
dbtmPkCol,
dbtmSelectAtId,
Expand Down

0 comments on commit cde8b1e

Please sign in to comment.