7 lines
179 B
Ruby
7 lines
179 B
Ruby
class AddUpdaterInfoToComments < ActiveRecord::Migration
|
|
def change
|
|
add_column :comments, :updater_id, :integer
|
|
add_column :comments, :updater_ip_addr, "inet"
|
|
end
|
|
end
|