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

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

class AddCommitIdToDraftNotes < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :draft_notes, :commit_id, :binary
  end
end