onlyDeleted method

Query<T> onlyDeleted()

---------- ONLY DELETED SCOPE ----------

Implementation

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