export default Validation.create({
  validate(value, errors) {
    const min = this.get('min');

    if (!value || parseInt(value) <  min) {