Skip to main content

versionupdatehistory

Table: versionupdatehistory

The versionupdatehistory table keeps track of application version updates for each user.

Columns

Column NameData TypeConstraintsDescription
versionUpdateHistoryint(11)NOPrimary key identifying the version update record
createdDatedatetimeYESTimestamp when the record was created
dateUpdateddatetimeYESTimestamp of the version update
mappedIdint(11)YESUser reference ID
versionNumbervarchar(255)YESVersion number of the application

Indexes

  • user_userId_mappedId_FK — Index on mappedId

Foreign Key Relations

  • mappedId → user.mappedId

Usage Notes

  • Tracks which version of the application was updated for each user.
  • Useful for debugging, analytics, and audit purposes.