gitlabhq/db/migrate/20111027142641_change_note_note_to_text.rb

9 lines
129 B
Ruby

class ChangeNoteNoteToText < ActiveRecord::Migration
def up
change_column :notes, :note, :text
end
def down
end
end