summaryrefslogtreecommitdiff
path: root/db/migrate/20211110100050_add_has_shimo_to_project_settings.rb
blob: 01507908e0fe333c29bae22699dcdb0588478092 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddHasShimoToProjectSettings < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    add_column :project_settings, :has_shimo, :boolean, default: false, null: false
  end
end