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

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

class AddSummaryToTimelogs < ActiveRecord::Migration[6.1]
  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20210621090030_add_text_limit_to_timelogs_summary
  def change
    add_column :timelogs, :summary, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end