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

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

class AddDevopsAdoptionSnapshotRangeEnd < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :analytics_devops_adoption_snapshots, :end_time, :datetime_with_timezone
  end
end