mirror of https://github.com/stashapp/stash.git
11 lines
266 B
Go
11 lines
266 B
Go
|
package image
|
||
|
|
||
|
import "github.com/stashapp/stash/pkg/models"
|
||
|
|
||
|
func UpdateFileModTime(qb models.ImageWriter, id int, modTime models.NullSQLiteTimestamp) (*models.Image, error) {
|
||
|
return qb.Update(models.ImagePartial{
|
||
|
ID: id,
|
||
|
FileModTime: &modTime,
|
||
|
})
|
||
|
}
|