Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class User < ApplicationRecord
  2. enum age_group: [
  3. '18_to_22',
  4. '23_to_27',
  5. '28_to_32',
  6. '33_to_37',
  7. '38_to_42'
  8. ]
  9. end
  10.  
  11. User.18_to_22
  12. syntax error, unexpected tINTEGER, expecting '('
  13. User.18_to_22
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement