summaryrefslogtreecommitdiff
path: root/db/migrate/20180924190739_add_scheduled_at_to_ci_builds.rb
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