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

20150529012113_add_tag_to_commits.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8f720730a1c92a7ebc5f4f61f37dff58e431658 (plain)
1
2
3
4
5
class AddTagToCommits < ActiveRecord::Migration
  def change
    add_column :commits, :tag, :boolean, default: false
  end
end