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

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

class AddScheduledAtToCiBuilds < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :ci_builds, :scheduled_at, :datetime_with_timezone # rubocop:disable Migration/AddColumnsToWideTables
  end
end