Giter Site home page Giter Site logo

lendinghome / active_record-updated_at Goto Github PK

View Code? Open in Web Editor NEW
26.0 26.0 5.0 21 KB

Touch `updated_at` by default with calls to `update_all` and `update_column(s)`

License: MIT License

Ruby 88.39% Shell 11.21% Dockerfile 0.40%
activerecord gem ruby ruby-on-rails

active_record-updated_at's People

Contributors

shuber avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

active_record-updated_at's Issues

Update gem to support newer Rails versions

I'm on Rails 6.1.7.3. Using this gem, it appears that only update_all is still working:

[9] pry(main)> Appointment.update_all(status: 'Hooked')
DEBUG 2023-04-11 18:40:38 +0000   Appointment Update All (12.3ms)  UPDATE "appointments" SET "status" = $1, "updated_at" = $2  [["status", "Hooked"], ["updated_at", "2023-04-11 18:40:38.171631"]]
=> 37
[10] pry(main)> Appointment.update_all(status: 'Booked')
DEBUG 2023-04-11 18:40:56 +0000   Appointment Update All (12.4ms)  UPDATE "appointments" SET "status" = $1, "updated_at" = $2  [["status", "Booked"], ["updated_at", "2023-04-11 18:40:56.788342"]]
=> 37
[11] pry(main)> ActiveRecord::UpdatedAt.disable { Appointment.update_all(status: 'Hooked') }
DEBUG 2023-04-11 18:41:35 +0000   Appointment Update All (8.7ms)  UPDATE "appointments" SET "status" = $1  [["status", "Hooked"]]
=> 37
[12] pry(main)> ActiveRecord::UpdatedAt.disable { Appointment.update_all(status: 'Booked') }
DEBUG 2023-04-11 18:41:42 +0000   Appointment Update All (13.2ms)  UPDATE "appointments" SET "status" = $1  [["status", "Booked"]]
=> 37

Do you know how much effort it would take to get update_column and update_columns working too?

Firing callbacks with update_column

Hi there, thanks for your work on this great little gem.

I was wondering if you might add support for AR callbacks with update_column. For some unexpected reason, they are not fired and I need code like below to fire my callbacks (I have a lot of them).

  User.find(123).update_column(name: "Sean")

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.