summaryrefslogtreecommitdiff
path: root/db/migrate/20160808085531_add_token_to_build.rb
blob: 3ed2a103ae3ca31d8ee9df38e215198e1bc5a28f (plain)
1
2
3
4
5
6
7
8
9
10
class AddTokenToBuild < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  def change
    add_column :ci_builds, :token, :string
  end
end