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

20230922004506_add_latest_released_at_to_catalog_resources.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20cdef24e93ac8d5751f1e7ca13f16d1023ee733 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddLatestReleasedAtToCatalogResources < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :catalog_resources, :latest_released_at, :datetime_with_timezone, null: true
  end
end