gitlab-org--gitlab-foss/db/migrate/20160808085531_add_token_to...

11 lines
247 B
Ruby

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