summaryrefslogtreecommitdiff
path: root/db/migrate/20200526193555_add_squash_option_to_project.rb
blob: 6dd4e1c7c8e1fa5dbf14d6b5a27a0239927651fb (plain)
1
2
3
4
5
6
7
8
9
# 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