You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the conversion to geopackage primary keys get the AUTOINCREMENT property.
before:
select sql from sqlite_master where name ="surface_map";
CREATETABLE "surface_map" (id INTEGERPRIMARY KEYNOT NULL,connection_node_id INTEGER,surface_id INTEGER,percentage FLOAT,tags TEXT,code VARCHAR(100),display_name VARCHAR(255), "geom" LINESTRING NOT NULL DEFAULT '')
after:
select sql from sqlite_master where name ="surface_map";
CREATETABLE "surface_map" ( "id"INTEGERPRIMARY KEY AUTOINCREMENT NOT NULL, "geom" LINESTRING NOT NULL, "connection_node_id" MEDIUMINT, "surface_id" MEDIUMINT, "percentage"REAL, "tags"TEXT, "code"TEXT, "display_name"TEXT)
This is not matched by the ORM
The text was updated successfully, but these errors were encountered:
During the conversion to geopackage primary keys get the
AUTOINCREMENT
property.before:
after:
This is not matched by the ORM
The text was updated successfully, but these errors were encountered: