I have a enum in my Model that corresponds to column in the database.
The enum looks like:
enum sale_info: { plan_1: 1, plan_2: 2, plan_3: 3, plan_4: 4, plan_5: 5 }
How can I get the integer value?
I've tried
Model.sale_info.to_i
But this only returns 0.
Model.sale_info.value.to_i? e.g.Model.sale_info.plan_1.to_i- Florian Glinteger- Cleyton