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

20120121122616_fix_noteable_id.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d110e8cd63b7d80583c4a87930cea18861c41603 (plain)
1
2
3
4
5
6
7
8
class FixNoteableId < ActiveRecord::Migration
  def up
    change_column :notes, :noteable_id, :string, :limit => 255
  end

  def down
  end
end