5 lines
119 B
Ruby
5 lines
119 B
Ruby
class AddIdCodeToComments < ActiveRecord::Migration
|
|
def change
|
|
add_column :comments, :id_code, :string
|
|
end
|
|
end
|