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

20121224092350_add_schedule_to_projects.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb3155f1159e195c3fc6eeb664c4770e3be855d9 (plain)
1
2
3
4
5
6
class AddScheduleToProjects < ActiveRecord::Migration
  def change
    add_column :projects, :always_build, :boolean, default: false, null: false
    add_column :projects, :polling_interval, :string, null: true
  end
end