9 lines
146 B
Ruby
9 lines
146 B
Ruby
class ChangeNoteNoteToText < ActiveRecord::Migration
|
|
def up
|
|
change_column :notes, :note, :text, :limit => false
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|