gitlabhq/db/migrate/20111027142641_change_note_note_to_text.rb

9 lines
146 B
Ruby
Raw Normal View History

2011-10-27 16:33:20 +02:00
class ChangeNoteNoteToText < ActiveRecord::Migration
def up
2011-10-27 16:41:10 +02:00
change_column :notes, :note, :text, :limit => false
2011-10-27 16:33:20 +02:00
end
def down
end
end