Files
danbooru/db/migrate/20130318002652_add_updater_info_to_comments.rb
2013-03-17 20:33:25 -04:00

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