소스 검색

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

Iñigo Valentin 9 년 전
부모
커밋
7e597e944b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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.