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

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

class AddLastDownloadedAtToPackages < Gitlab::Database::Migration[2.0]
  def change
    add_column :packages_packages, :last_downloaded_at, :datetime_with_timezone
  end
end