photoprism/internal/entity/photo_keyword_fixtures.go

18 lines
376 B
Go
Raw Normal View History

package entity
var PhotoKeywordFixtures = map[string]PhotoKeyword{
"1": {
PhotoID: 1000004,
KeywordID: 1000000,
},
}
2020-05-08 14:18:11 +02:00
var PhotoKeywordFixture1 = PhotoKeywordFixtures["1"]
// CreatePhotoKeywordFixtures inserts known entities into the database for testing.
func CreatePhotoKeywordFixtures() {
for _, entity := range PhotoKeywordFixtures {
Db().Create(&entity)
}
}