Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220318120802_add_target_platforms_to_project_setting.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e8f206e56d3dcfef43d25350222868dd8a34569 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddTargetPlatformsToProjectSetting < Gitlab::Database::Migration[1.0]
  def change
    add_column :project_settings, :target_platforms, :string, array: true, default: [], null: false, if_not_exists: true
  end
end