photoprism/internal/entity/country_fixtures.go
2020-05-01 14:18:51 +02:00

22 lines
526 B
Go

package entity
var CountryFixtures = map[string]Country{
"apple-iphone-se": {
ID: "de",
CountrySlug: "germany",
CountryName: "Germany",
CountryDescription: "Country description",
CountryNotes: "Country Notes",
CountryPhoto: nil,
CountryPhotoID: 0,
New: false,
},
}
// CreateCountryFixtures inserts known entities into the database for testing.
func CreateCountryFixtures() {
for _, entity := range CountryFixtures {
Db().Create(&entity)
}
}