Skip to content
/ scribe Public

ActiveRecord plugin to provide model attribute diffs and change tracking

License

Notifications You must be signed in to change notification settings

jim/scribe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scribe
======

Introduction goes here.

Database Requirements
======

You'll need a migration to create a table to store changes in:

create_table :changes, :force => true do |t|
  t.integer :model_id
  t.string :model_type, :limit => 20
  t.text :diff
  t.datetime :created_at
end
add_index :changes, [ :model_id, :model_type ]

You may want to add other indexes depending on your application.

Example
=======

Example goes here.


Copyright (c) 2008 James Benton, released under the MIT license

About

ActiveRecord plugin to provide model attribute diffs and change tracking

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages