Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160316204731_add_commit_id_to_todos.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae19fdd1abd3c525a4955a527ec2b89215e285f3 (plain)
1
2
3
4
5
6
class AddCommitIdToTodos < ActiveRecord::Migration
  def change
    add_column :todos, :commit_id, :string
    add_index :todos, :commit_id
  end
end