Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit ce74d57

Browse files
Added sync_id column in JtxContract
1 parent 1accbfd commit ce74d57

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lib/src/main/kotlin/at/techbee/jtx/JtxContract.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ object JtxContract {
4646
const val AUTHORITY = "at.techbee.jtx.provider"
4747

4848
/** The version of this SyncContentProviderContract */
49-
const val VERSION = 7
49+
const val VERSION = 8
5050

5151
/** Constructs an Uri for the Jtx Sync Adapter with the given Account
5252
* @param [account] The account that should be appended to the Base Uri
@@ -1215,6 +1215,12 @@ object JtxContract {
12151215
*/
12161216
const val LAST_SYNC = "lastsync"
12171217

1218+
/**
1219+
* Purpose: This column/property stores a sync_id for the given collection
1220+
* See https://github.com/TechbeeAT/jtxBoard/issues/1635
1221+
* Type: [Long]
1222+
*/
1223+
const val SYNC_ID = "sync_id"
12181224
}
12191225

12201226

0 commit comments

Comments
 (0)