I am very new to ruby and rails, I wanted to have an attribute in a database which is a number
->The number can have a maximum length of 10.
->The number is separated into 3 parts, each part being delimited by a "-".
->The first part from the left can have 2-7 digits, the second part should have exactly 2 digits
and the third part should have exactly 1 digit.
for example
23-56-7
3454-54-3
3435464-54-3 are valid numbers,
How do i do this?