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

20150528011001_add_fields_to_builds.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 394dd8bf3dc1ed67542c3e75de572ba9ef70af61 (plain)
1
2
3
4
5
6
class AddFieldsToBuilds < ActiveRecord::Migration
  def change
    add_column :builds, :name, :string
    add_column :builds, :deploy, :boolean, default: false
  end
end