Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed column type of timestamp in LocalChangeEntity #2101

Merged
merged 6 commits into from
Jul 31, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated kdoc
  • Loading branch information
aditya-07 committed Jul 31, 2023
commit a812745c9ecd29e9a388f6183038f07b7f14d43b
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ data class LocalChange(
val resourceId: String,
/** This is the id of the version of the resource that this local change is based of */
val versionId: String? = null,
/** last updated timestamp on server when this local changes are sync with server */
/** This signifies the instant a CUD operation was performed on the resource. */
omarismail94 marked this conversation as resolved.
Show resolved Hide resolved
aditya-07 marked this conversation as resolved.
Show resolved Hide resolved
val timestamp: Instant,
aditya-07 marked this conversation as resolved.
Show resolved Hide resolved
/** Type of local change like insert, delete, etc */
val type: Type,
Expand Down
Loading