gitlabhq/db/migrate/20111027142641_change_note_note_to_text.rb
2011-10-27 17:41:10 +03:00

9 lines
146 B
Ruby

class ChangeNoteNoteToText < ActiveRecord::Migration
def up
change_column :notes, :note, :text, :limit => false
end
def down
end
end