summaryrefslogtreecommitdiff
path: root/db/migrate/20151210125928_add_ci_to_project.rb
blob: 182f1e17b9a0d11c0634ea274780c2b2141bc8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# rubocop:disable all
class AddCiToProject < ActiveRecord::Migration[4.2]
  def change
    add_column :projects, :ci_id, :integer
    add_column :projects, :builds_enabled, :boolean, default: true, null: false
    add_column :projects, :shared_runners_enabled, :boolean, default: true, null: false
    add_column :projects, :runners_token, :string
    add_column :projects, :build_coverage_regex, :string
    add_column :projects, :build_allow_git_fetch, :boolean, default: true, null: false
    add_column :projects, :build_timeout, :integer, default: 3600, null: false
  end
end