20160808085531_add_token_to_build.rb 247 Bytes
Newer Older
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