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

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

class AddStartedAtToBatchedBackgroundMigrationsTable < Gitlab::Database::Migration[1.0]
  def change
    add_column :batched_background_migrations, :started_at, :datetime_with_timezone
  end
end