BabySqueel
PaperTrail
BabySqueel | PaperTrail | |
---|---|---|
- | 19 | |
500 | 6,762 | |
- | 0.2% | |
5.8 | 5.8 | |
9 months ago | 21 days ago | |
Ruby | Ruby | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
BabySqueel
We haven't tracked posts mentioning BabySqueel yet.
Tracking mentions began in Dec 2020.
PaperTrail
-
RDS Database Migration Series - Facing The Giant: How we migrated 11 TB database
The primary culprits were two tables (and their huge indexes) that contributed approximately 90% to the total size of the database. One of them was an audit trail (paper trail versions, to be exact), and the second one was more domain-specific for short-term rentals. It's a pre-computed cache of prices for properties depending on various conditions so that they don't need to be computed each time on the fly and can be easily distributed to other services.
-
historical data and "point in time" data modeling techniques, advice.
if the source (web) application makes their own audit tables. ex: our ruby on rails application uses the paper-trail gem
-
Best rails tools to automatically handle logging of things like all a user's actions, or changes to a record in a module - primarily for audit purposes.
Start with https://github.com/paper-trail-gem/paper_trail
-
Inventory/Sales Management module built on a Rails app - what would be the best way to "version" updates made against an SKU.
We use paper_trail for this
-
is there a gem for tracking adhoc rails console changes
I think you could use that in conjunction with the paper_trail gem, as /u/GreenCalligrapher571 mentioned, which is also a good suggestion. As an additional note, when changing records in production while using the paper_trail gem, I suggest wrapping your database-mutating statements executed in the rails console within a whodunnit block, so PaperTrail.request(whodunnit: 'Dorian Marié') { widget.update name: 'Wibble' } or something rather than just widget.update name: 'Wibble'. Or, if you have some sort of issue-tracking / ticketing system, you could set the whodunnit value to the ticket number or whatever, and then anyone who wants to know why the records are in the state they're in can consult that ticket, which hopefully has additional relevant context.
-
History Tracking With Postgres
For a while we did this using the paper-trail gem. This was a very simple way to add a few lines of code to keep track of all of the changes made to an ActiveRecord model. But it came with one drawback. Every change to the data had to be done through ActiveRecord. There are often times when this makes an app vulnerable to a race condition. I’ll use a contrived example so as not to share any real code from our client’s app.
-
Adding soft delete to a Phoenix Commanded (CQRS) API
In most designs, this would probably not be possible unless a table tracking extension is being used in an ORM. Even with change tracking enabled through extensions like paper trail or Django simple history, it can be tricky to restore deleted entities. Object tracking would need to have been enabled before it is needed to ensure the data is still around to be restored.
- Looking for a Rails Gem that Audits Manual Database Changes
-
Temporality/time-travelling in DB with ActiveRecord?
Maybe you are looking for the papertrail gem? https://github.com/paper-trail-gem/paper_trail
What are some alternatives?
ActiveRecordExtended - Adds additional postgres functionality to an ActiveRecord / Rails application
Audited - Audited (formerly acts_as_audited) is an ORM extension that logs all changes to your Rails models.
arel-helpers - Useful tools to help construct database queries with ActiveRecord and Arel.
Paranoia - acts_as_paranoid for Rails 5, 6 and 7
ActiveRecord Import - A library for bulk insertion of data into your database using ActiveRecord.
Logidze - Database changes log for Rails
pluck_all - A more efficient way to get data from database. Like #pluck method but return array of hashes instead.
mongoid-history - Multi-user non-linear history tracking, auditing, undo, redo for mongoid.
Enumerize - Enumerated attributes with I18n and ActiveRecord/Mongoid support
ActsAsParanoid - ActiveRecord plugin allowing you to hide and restore records without actually deleting them.
Awesome Nested Set - An awesome replacement for acts_as_nested_set and better_nested_set.
Discard - 🃏🗑 Soft deletes for ActiveRecord done right