I'm currently making the backend of an application updater and i use my server to keep track of all files and revisions.
Currently i have two tables in my database:
dev_version_control_files
Columns: FileID, FileName
dev_version_control_versions
Columns: VersionID, FileID, Version, DateReleased, FileLocation
The files table keeps one record for every file that's under version control. The version table keeps one record for every version of each file along with the date its released, its version number and location.
Now what i want is to get the last record (update) of every file in the files table. This should be decided by the date field, that holds a unix timestamp from when it was released.
I don't want to go through every row in the version table every time an update request is made, so would it be possible to do this in one query?
