photoprism/internal/entity/country_fixtures.go

24 lines
546 B
Go
Raw Normal View History

package entity
type CountryMap map[string]Country
var CountryFixtures = CountryMap{
2020-05-11 14:41:20 +02:00
"germany": {
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.
2020-05-01 14:13:59 +02:00
func CreateCountryFixtures() {
for _, entity := range CountryFixtures {
2020-05-01 14:13:59 +02:00
Db().Create(&entity)
}
}