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

20130804151314_add_st_diff_to_note.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e2da73b695c56ec442660f254c126f8c57e7360 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddStDiffToNote < ActiveRecord::Migration
  def change
    add_column :notes, :st_diff, :text, :null => true
  end
end