e3bb8b19dd
Also improves migrations and updates the db schema docs. Signed-off-by: Michael Mayer <michael@photoprism.app>
12 lines
266 B
Go
12 lines
266 B
Go
package query
|
|
|
|
import (
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
)
|
|
|
|
// AccountByID finds an account by primary key.
|
|
func AccountByID(id uint) (result entity.Service, err error) {
|
|
err = Db().Where("id = ?", id).First(&result).Error
|
|
|
|
return result, err
|
|
}
|