docbrown/db/migrate/20160329004330_add_id_code_to_comments.rb
2018-02-28 16:11:08 -05:00

5 lines
119 B
Ruby

class AddIdCodeToComments < ActiveRecord::Migration
def change
add_column :comments, :id_code, :string
end
end