Created
September 1, 2014 09:25
-
-
Save NikitaAvvakumov/ad3f6da9fd795a400ee1 to your computer and use it in GitHub Desktop.
OSRA Province & Partner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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