<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -3,22 +3,14 @@
 Automatically userstamps create and update operations if the table has columns named *created_by* and/or *updated_by*.
 The Blame plugin attempts to mirror the simplicity of ActiveRecord's timestamp module.
 
-Blame adds a *userstamps* migration helper which will create both created_by and updated_by columns in your table:
-
-  create_table :widgets do |t|
-    t.string :name
-    t.timestamps
-    t.userstamps
-  end
-
-Blame assumes that you are using restful-authentication and defaults to looking for the current user in User.current_user. You
+Blame assumes that you are using restful-authentication and expects User.current_user to return the current user. You
 can override this behavior by writing your own *userstamp_object* method in ActiveRecord::Base or any of your models. For example:
 
   def userstamp_object
     User.find(session[:user_id])
   end
 
-You can change the names of the userstamp columns:
+If you don't like created_by/updated_by you can customize the column names:
 
   # Globally in environment.rb
   ActiveRecord::Base.created_userstamp_column = :creator_id
@@ -33,11 +25,18 @@ Automatic userstamping can be turned off globally by setting:
 
   ActiveRecord::Base.record_userstamps = false
   
-  
+Blame adds a *userstamps* migration helper which will add the created_by and updated_by columns (or your custom column names) to your table:
+
+  create_table :widgets do |t|
+    t.string :name
+    t.timestamps
+    t.userstamps
+  end
+
 == Installation
 
   ruby script/plugin install git://github.com/infused/blame.git
-  
+
 
 == Credit
 </diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -39,8 +39,8 @@ module Blame
   
   module UserstampMigrationHelper
     def userstamps
-      column :created_by, :integer
-      column :updated_by, :integer
+      column ActiveRecord::Base.created_userstamp_column, :integer
+      column ActiveRecord::Base.updated_userstamp_column, :integer
     end
   end
   </diff>
      <filename>lib/blame.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>bf05c3e09463f9aebf256da2582a2aaba0eae038</id>
    </parent>
  </parents>
  <author>
    <name>Keith Morrison</name>
    <email>keithm@infused.org</email>
  </author>
  <url>http://github.com/infused/blame/commit/be2d4d1572b5d0fb6fcca999623b6d96160aa92f</url>
  <id>be2d4d1572b5d0fb6fcca999623b6d96160aa92f</id>
  <committed-date>2009-01-04T21:11:24-08:00</committed-date>
  <authored-date>2009-01-04T21:11:24-08:00</authored-date>
  <message>The migration helper now supports custom column names</message>
  <tree>7d9db964ffdd70c6824ea3c79d57a275fe2afa36</tree>
  <committer>
    <name>Keith Morrison</name>
    <email>keithm@infused.org</email>
  </committer>
</commit>
