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

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

  def change
    add_column :ci_builds, :when, :string
    add_column :ci_builds, :yaml_variables, :text
  end
end