Skull0inc's answer works, but you might want to remove created_at and updated_at. The intention of strong params is to list only the attributes you want updatable by the controller.
Something like...
def user_params
params.require(:user).permit(User.column_names - ["created_at", "updated_at"])
end