summaryrefslogtreecommitdiff
path: root/db/migrate/20151210125928_add_ci_to_project.rb
blob: a9ff49a3f7e1d384f5b1ea9b049c8034d176799f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# rubocop:disable all
class AddCiToProject < ActiveRecord::Migration
  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