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

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

class AddProductivityAnalyticsStartDate < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :application_settings, :productivity_analytics_start_date, :datetime_with_timezone
  end
end