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

20150306135341_add_active_to_runner.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b9a3dc5f3008c6ba4c33dd1a8d3d6dae1e52a33 (plain)
1
2
3
4
5
class AddActiveToRunner < ActiveRecord::Migration
  def change
    add_column :runners, :active, :boolean, null: false, default: true
  end
end