summaryrefslogtreecommitdiff
path: root/db/migrate/20160316204731_add_commit_id_to_todos.rb
blob: d1c004b2ced6695a9d41802efaf71f118673d152 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddCommitIdToTodos < ActiveRecord::Migration[4.2]
  def change
    add_column :todos, :commit_id, :string
    add_index :todos, :commit_id
  end
end