On Thursday, December 29, 2016 at 7:43:50 AM UTC-8, Quackerjack wrote: > > Thx for the fast response! > > I will do it like you suggest, i thought were is maybe something like in > rails: > > update_colums - just update db and skip validations and hooks > update_attributes - do all stuff > > Do you thought about that to integrate or is that for you a no go to build > in cause of bypass all? >
In Sequel, you can always drop down to the dataset level if you want to: model_instance.this.update(:foo=>1) As this is dataset level, model hooks/validations/etc. are not involved. Thanks, Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sequel-talk. For more options, visit https://groups.google.com/d/optout.
