Explorar el Código

Not using references to places as route points identifiers: always latitude and longitude.

Iñigo Valentin hace 9 años
padre
commit
7e597e944b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      app/src/main/java/com/ivalentin/margolariak/GM.java

+ 1 - 1
app/src/main/java/com/ivalentin/margolariak/GM.java

@@ -333,7 +333,7 @@ final class GM {
 				/**
 				 * Creates the table "route_point" on the database.
 				 */
-				static final String ROUTE_POINT = "CREATE TABLE IF NOT EXISTS route_point (id INT, route INT, part INT, place_o INT, lat_o DOUBLE, lon_o DOUBLE, place_d INT, lat_d DOUBLE, lon_d DOUBLE, mins INT, visible INT);";
+				static final String ROUTE_POINT = "CREATE TABLE IF NOT EXISTS route_point (id INT, route INT, part INT, lat_o DOUBLE, lon_o DOUBLE, lat_d DOUBLE, lon_d DOUBLE, mins INT, visible INT);";
 
 				/**
 				 * Creates the table "settings" on the database.