9 lines
129 B
Ruby
9 lines
129 B
Ruby
class ChangeNoteNoteToText < ActiveRecord::Migration
|
|
def up
|
|
change_column :notes, :note, :text
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|