discourse/db/migrate/20120416201606_add_reply_to_to_posts.rb
2013-02-05 14:16:51 -05:00

7 lines
184 B
Ruby

class AddReplyToToPosts < ActiveRecord::Migration
def change
add_column :posts, :reply_to_post_number, :integer, null: true
add_index :posts, :reply_to_post_number
end
end