qi6_app/db/migrate/20150411203736_add_parent_id_to_comments.rb
2019-05-17 12:30:45 +02:00

6 lines
129 B
Ruby

class AddParentIdToComments < ActiveRecord::Migration[6.0]
def change
add_column :comments, :parent_id, :integer
end
end