mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
7 lines
184 B
Ruby
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
|