9 lines
152 B
Ruby
9 lines
152 B
Ruby
class Feedback < ApplicationRecord
|
|
belongs_to :user
|
|
|
|
enum rating: {
|
|
happy: 'happy',
|
|
neutral: 'neutral',
|
|
unhappy: 'unhappy'
|
|
}
|
|
end
|