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: cd2f8b59d41bd87bb14261747ab89ea6eb4c3c9c (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
  end
end