Prechádzať zdrojové kódy

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

Iñigo Valentin 9 rokov pred
rodič
commit
7e597e944b

+ 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.