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

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

class AddLicenseScanningActionToOnboardingProgresses < Gitlab::Database::Migration[1.0]
  def change
    add_column :onboarding_progresses, :license_scanning_run_at, :datetime_with_timezone
  end
end