Exemplo n.º 1
0
// Indexes for the user table
func (table *User) Indexes(indexes *hood.Indexes) {
	indexes.AddUnique("name_index", "name")
	indexes.AddUnique("dropbox_uid_index", "dropbox_uid")
}
Exemplo n.º 2
0
Arquivo: schema.go Projeto: judg3/blog
func (table *Users) Indexes(indexes *hood.Indexes) {
	indexes.AddUnique("name_index", "first", "last")
}