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

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

class AddReadAtToDependencyProxyManifests < Gitlab::Database::Migration[1.0]
  def change
    add_column :dependency_proxy_manifests, :read_at, :datetime_with_timezone, null: false, default: -> { 'NOW()' }
  end
end