gitlabhq/db/migrate/20111027142641_change_note_note_to_text.rb

9 lines
129 B
Ruby
Raw Normal View History

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