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

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

class AddScheduledAtToJiraImports < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :jira_imports, :scheduled_at, :datetime_with_timezone
  end
end