method
returning
v7.0.0 -
Show latest stable
- Class:
ActiveRecord::InsertAll::Builder
returning()public
No documentation available.
# File activerecord/lib/active_record/insert_all.rb, line 209
def returning
return unless insert_all.returning
if insert_all.returning.is_a?(String)
insert_all.returning
else
format_columns(insert_all.returning)
end
end