photoprism/internal/entity/photo_keyword_fixtures.go

30 lines
528 B
Go
Raw Normal View History

package entity
type PhotoKeywordMap map[string]PhotoKeyword
var PhotoKeywordFixtures = PhotoKeywordMap{
"1": {
PhotoID: 1000004,
KeywordID: 1000000,
},
2020-05-11 17:01:05 +02:00
"2": {
PhotoID: 1000001,
KeywordID: 1000001,
},
2020-05-14 14:17:12 +02:00
"3": {
PhotoID: 1000000,
KeywordID: 1000000,
},
"4": {
PhotoID: 1000003,
KeywordID: 1000000,
},
}
// CreatePhotoKeywordFixtures inserts known entities into the database for testing.
func CreatePhotoKeywordFixtures() {
for _, entity := range PhotoKeywordFixtures {
Db().Create(&entity)
}
}