quartz_app/db/migrate/20150411203736_add_parent_id_to_comments.rb
Caroline Girard 37d278a7da initial
2018-09-13 13:32:45 +02:00

6 lines
124 B
Ruby

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