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

20160919144305_add_type_to_labels.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43aac7846d3795fa763182227402442df5252f78 (plain)
1
2
3
4
5
6
7
8
9
class AddTypeToLabels < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :labels, :type, :string
  end
end