Почему я получаю эту ошибку?
NoMethodError: undefined method `set_password' for Service (call 'Service.connection' to establish a connection):Class
Вот моя модель (с именем Service)
class Service < ApplicationRecord
def set_password
self.password = p SecureRandom.base64(5)
self.save
end
end
Спасибо за ваш ответ.