25 lines
472 B
Go
25 lines
472 B
Go
package entity
|
|
|
|
type PhotoKeywordMap map[string]PhotoKeyword
|
|
|
|
var PhotoKeywordFixtures = PhotoKeywordMap{
|
|
"1": {
|
|
PhotoID: 1000004,
|
|
KeywordID: 1000000,
|
|
},
|
|
"2": {
|
|
PhotoID: 1000001,
|
|
KeywordID: 1000001,
|
|
},
|
|
"3": {
|
|
PhotoID: 1000000,
|
|
KeywordID: 1000000,
|
|
},
|
|
}
|
|
|
|
// CreatePhotoKeywordFixtures inserts known entities into the database for testing.
|
|
func CreatePhotoKeywordFixtures() {
|
|
for _, entity := range PhotoKeywordFixtures {
|
|
Db().Create(&entity)
|
|
}
|
|
}
|