debian-mirror-gitlab/db/migrate/20200526193555_add_squash_option_to_project.rb

10 lines
217 B
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
class AddSquashOptionToProject < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :project_settings, :squash_option, :integer, default: 3, limit: 2
end
end