Files
danbooru/db/migrate/20130318002652_add_updater_info_to_comments.rb

7 lines
184 B
Ruby

class AddUpdaterInfoToComments < ActiveRecord::Migration[4.2]
def change
add_column :comments, :updater_id, :integer
add_column :comments, :updater_ip_addr, "inet"
end
end