gitlabhq/db/migrate/20111027142641_change_note_...

9 lines
129 B
Ruby

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