2020-04-30 14:32:48 +02:00
|
|
|
package entity
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var LabelFixtures = map[string]Label{
|
|
|
|
"landscape": {
|
|
|
|
ID: 1000000,
|
|
|
|
LabelUUID: "lt9k3pw1wowuy3c2",
|
|
|
|
LabelSlug: "landscape",
|
|
|
|
CustomSlug: "landscape",
|
|
|
|
LabelName: "Landscape",
|
|
|
|
LabelPriority: 0,
|
|
|
|
LabelFavorite: true,
|
|
|
|
LabelDescription: "",
|
|
|
|
LabelNotes: "",
|
|
|
|
LabelCategories: []*Label{},
|
|
|
|
Links: []Link{},
|
|
|
|
CreatedAt: time.Now(),
|
|
|
|
UpdatedAt: time.Now(),
|
|
|
|
DeletedAt: nil,
|
|
|
|
New: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateLabelFixtures inserts known entities into the database for testing.
|
2020-04-30 20:07:03 +02:00
|
|
|
func CreateLabelFixtures() {
|
2020-04-30 14:32:48 +02:00
|
|
|
for _, entity := range LabelFixtures {
|
2020-04-30 20:07:03 +02:00
|
|
|
Db().Create(&entity)
|
2020-04-30 14:32:48 +02:00
|
|
|
}
|
|
|
|
}
|