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

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

class AddStatusUpdatedAtToContainerRepository < Gitlab::Database::Migration[2.0]
  def change
    add_column :container_repositories, :status_updated_at, :datetime_with_timezone
  end
end