Files
grecia/db/migrate/20150902114558_add_ancestry_to_comments.rb
2015-09-02 17:24:24 +02:00

8 lines
158 B
Ruby

class AddAncestryToComments < ActiveRecord::Migration
def change
add_column :comments, :ancestry, :string
add_index :comments, :ancestry
end
end