Skip to content

Instantly share code, notes, and snippets.

@NikitaAvvakumov
Created September 1, 2014 09:25
Show Gist options
  • Select an option

  • Save NikitaAvvakumov/ad3f6da9fd795a400ee1 to your computer and use it in GitHub Desktop.

Select an option

Save NikitaAvvakumov/ad3f6da9fd795a400ee1 to your computer and use it in GitHub Desktop.
OSRA Province & Partner
class Province < ActiveRecord::Base
validates :name, presence: true, uniqueness: true
validates :code, presence: true, uniqueness: true, inclusion: { in: 10..99 }
end
class Partner < ActiveRecord::Base
validates :name, presence: true, uniqueness: true
validates :province, presence: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment