Code Monkey home page Code Monkey logo

active_record-returning_attributes's Introduction

ActiveRecord::ReturningAttributes

ReturningAttributes provides a way to populate model attributes with database-backed default values or values set via database triggers when creating or updating single records without executing additional database queries.

Slightly Longer Description

When having database-backed default values (like NOW()) or values set via database triggers, we don't get to see them when creating or updating records in Rails. This is because when inserting records, the PostgreSQL RETURNING clause only states the id (or a different primary key) column, other columns are not returned back to Rails-land. Similar to inserts, updates don't get to see those values because there's no RETURNING clause involved at all.

Internally this library changes the RETURNING clause for inserts and adds it for updates so we don't have to reload records.

Caveats:

  • PostgreSQL only
  • Only tested in Rails 6.0.0.rc1
  • Overrides ActiveRecord core code

Installation

Add this line to your application's Gemfile:

gem 'active_record-returning_attributes', github: 'tbuehlmann/active_record-returning_attributes'

And then execute:

$ bundle install

Usage

Assume having a database-backed default value for the uuid column or a trigger that sets the value.

Before:

class Project < ApplicationRecord
end

project = Project.create
project.uuid # => nil

project.reload
project.uuid # => '2b57df54-3768-45c6-ad10-aeec028e7735'

After:

class Project < ApplicationRecord
  self.returning_attributes = [:uuid]
end

project = Project.create
project.uuid # => '2b57df54-3768-45c6-ad10-aeec028e7735'

By setting self.returning_attributes, ActiveRecord will request those columns via the RETURNING clause and populate the corresponding attributes in your model.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/tbuehlmann/active_record-returning_attributes.

License

The gem is available as open source under the terms of the MIT License.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.