2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-08 12:06:51 +08:00
discourse/db/migrate/20120416201606_add_reply_to_to_posts.rb

6 lines
189 B
Ruby

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