Added general user stamping on contact

This commit is contained in:
Andres Keskküla 2014-08-04 13:15:54 +03:00
parent 86dc8321c6
commit 8ce1875484
6 changed files with 33 additions and 1 deletions

View file

@ -0,0 +1,6 @@
class AddUserStampsToContact < ActiveRecord::Migration
def change
add_column :contacts, :created_by_id, :integer
add_column :contacts, :updated_by_id, :integer
end
end