Storing Path name with her stop's

This commit is contained in:
clement
2024-07-09 17:48:08 +02:00
parent 1e7b729e4f
commit a744faf0d2
3 changed files with 43 additions and 2 deletions

View File

@@ -12,7 +12,8 @@ object PathContract {
const val SQL_CREATE_ENTRIES =
"CREATE TABLE ${PathEntry.TABLE_NAME} (" +
"${BaseColumns._ID} INTEGER PRIMARY KEY," +
"${PathEntry.PATH_NAME} TEXT)"
"${PathEntry.PATH_NAME} TEXT"+
")"
const val SQL_DELETE_ENTRIES = "DROP TABLE IF EXISTS ${PathEntry.TABLE_NAME}"
}