discourse/db/migrate/20120618152946_add_reply_be...

8 lines
182 B
Ruby

# frozen_string_literal: true
class AddReplyBelowToPosts < ActiveRecord::Migration[4.2]
def change
add_column :posts, :reply_below_post_number, :integer, null: true
end
end