about summary refs log tree commit diff
path: root/db/migrate/20200816200108_add_root_to_conversations.rb
blob: f45a3b476da5d226e36108ea93a748c5a60feef1 (plain) (blame)
1
2
3
4
5
6
7
class AddRootToConversations < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      add_column :conversations, :root, :string, index: true
    end
  end
end