summaryrefslogtreecommitdiff
path: root/db/migrate/20220421180321_add_last_cleanup_deleted_tags_count_to_container_repository.rb
blob: 141bc4b49e64aacae6a2904e84991c7e82bf5d00 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddLastCleanupDeletedTagsCountToContainerRepository < Gitlab::Database::Migration[2.0]
  def change
    add_column :container_repositories, :last_cleanup_deleted_tags_count, :integer
  end
end