discourse/db/migrate/20120416201606_add_reply_to...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
220 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddReplyToToPosts < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def change
add_column :posts, :reply_to_post_number, :integer, null: true
add_index :posts, :reply_to_post_number
end
end