withoutDeleted method

Query<T> withoutDeleted()

---------- WITHOUT DELETED SCOPE ----------

Implementation

Query<T> withoutDeleted() {
  base.addWhere('${model.table}.deleted_at IS NULL');
  return this;
}