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

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

class AddDeleteStartedAtToContainerRepositories < Gitlab::Database::Migration[2.0]
  def change
    add_column :container_repositories,
               :delete_started_at,
               :datetime_with_timezone,
               null: true,
               default: nil
  end
end