debian-mirror-gitlab/db/migrate/20211110100050_add_has_shimo_to_project_settings.rb
2021-12-11 22:18:48 +05:30

10 lines
232 B
Ruby

# 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