A gem to keep all changes about the data in database.
It automatically saves who made the changes at what time and what has been changed.
You can choose to skip the column which you do not want to keep change logs.
For example: ‘updated_at’, ‘created_at’ and ‘password’ etc.
1. by command:
# gem install change_log
Then in your environment.rb:
config.gem 'change_log'
2. or by bundler:
# Gemfile in your application
gem 'change_log'
Then:
bundle install
- Note:
If you use bundler with Rails 2.3.x, you may get “enable_change_log” method missing error.
This is because Rails 2.3.x comes with its own gem handling.
You need to override that and replace it with support for Bundler.
Visit Bundler Website to find out how.
3. Create a table to keep all changes
Generate a migration file similar to this:
class AddChangeLog < ActiveRecord::Migration
def self.up
create_table :change_logs do |t| # feel free to choose another table name
t.integer :version, :null=>false # store version of each change
t.string :record_id,:limit=>30 # store the actual record id
t.string :table_name, :limit=>60 # store the table name
t.string :attribute_name,:limit=>60 # store the column name
t.string :user, :limit=>20 # store the user who made the change
t.string :action, :limit=>6 # store the change action: create, read, update, delete
t.text :old_value # the value before change
t.text :new_value # value after change
t.string :field_type, :limit=>30 # the column type eg. date, text, varchar, int etc
t.timestamps
end
end
def self.down
drop_table :change_logs
end
end
Then:
rake db:migrate
This method will tell change_log who is the current user
def current_user
return session[:user] # replace this with your own code
end
Enable change_log for Active Record Model,
just put following line in very beginning of model file.
enable_change_log :ignore=>[:updated_at]
Put any columns you do not want to keep in the change log table in :ignore option.
eg. the password hash
Then the system should record every changes the user made to change_log table.
If you are making changes within Model file:
For Example:
# this is a model file
def making_some_changes
user = User.find(:first)
user.email = '[email protected]'
user.save
end
An attribute called ‘whodidit’ is automatically available.
So if you want to keep the changes in this scenario, do following:
# this is a model file
def making_some_changes
user = User.find(:first)
user.email = '[email protected]'
user.whodidit = 'Peter'
user.save
end
ChangeLogs model is core ActiveRecord model used by change_log gem.
You can use it directly in your model, controller even in helper.
For example:
# List all changes
ChangeLogs.find(:all)
# List all changes made by user 'peterz'
ChangeLogs.find(:all,:conditions=>['user = ?', 'peterz'])
# List all changes for table 'accounts'
ChangeLogs.find(:all,:conditions=>['table_name = ?', 'accounts'])
You can globally turn it off for your testing.
# config/environment.rb
ChangeLog.enabled = false if RAILS_ENV == 'test'
change_log gem can save changes into separate database from the main application.
The database could be MySQL, SQLite or any other database that active record is happy to connect with.
Here is an example of database.yml when using separate database for ‘change_logs’:
change_logs:
adapter: mysql2
encoding: utf8
database: change_logs
username: username
password: ********
host: hostname
port: 3306
And also you need to tell change_log gem to establish the connection.
# config/environment.rb
ChangeLogs.establish_connection(:change_logs)
Table name is also configurable. Instead of ‘change_logs’, choose your preferred table name and run the migration.
Just remember in your environment.rb file, you need to tell change_log gem
what is your table name:
# config/environment.rb
ChangeLogs.set_table_name('hr_maintenances')
Peter Zhang at NCS New Zealand.
Email: [email protected]
Copyright © 2011 Peter Zhang and NCS LTD, released under the MIT license