debian-mirror-gitlab/db/migrate/20151210125928_add_ci_to_project.rb
2016-01-14 18:37:52 +05:30

12 lines
554 B
Ruby

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