10 lines
247 B
Ruby
10 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
|