summaryrefslogtreecommitdiff
path: root/model/recipe_step.go
blob: dc2a83189fa68a286b987b2dfdc666e3598e9ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package model

type RecipeStep struct {
	Id       string  // FIXME has to be uint
	RecipeId string  // FIXME has to be uint
	Index    string  // FIXME has to be uint
	Text     string
}

func (d *RecipeStep) FromDB() error {
	query, err := GetSql(`recipe-step-select`)
	if err != nil {
		return err
	}

	err = db.QueryRow(query, d.Id).Scan(
		&d.Id,
		&d.RecipeId,
		&d.Index,
		&d.Text,
	)

	return err
}