Oczywiscie o ile uzywasz save(), dla innych metod analogicznie. Najlepiej jakbys pokazal przykladowe zapytanie w ORM
public function save() { $this->where('payed', 1); parent::save(); }
ale glowy nie dam.
public function find_all($limit = NULL, $offset = NULL){ $this->where('payed', 1); return parent::find_all($limit, $offset); } public function find($id = NULL) $this->where('payed', 1); return parent::find($id); }*