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

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

class AddOkrReminderLastSentToWorkItemProgresses < Gitlab::Database::Migration[2.1]
  def change
    add_column :work_item_progresses, :last_reminder_sent_at, :datetime_with_timezone
  end
end