diff --git a/orm.go b/orm.go index a9dedfd5..89aa5bee 100644 --- a/orm.go +++ b/orm.go @@ -61,6 +61,14 @@ func (s *Orm) Delete(value interface{}) *Orm { return s } +func (s *Orm) Update(column string, value string) *Orm { + return s +} + +func (s *Orm) Updates(values map[string]string) *Orm { + return s +} + func (s *Orm) Exec(sql string) *Orm { return s }