Class: ExpandNotes

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/20110922000000_expand_notes.rb

Class Method Summary collapse

Class Method Details

.downObject



5
6
7
# File 'db/migrate/20110922000000_expand_notes.rb', line 5

def self.down
  change_column :notes, :data, :string, :limit => 65536
end

.upObject



2
3
4
# File 'db/migrate/20110922000000_expand_notes.rb', line 2

def self.up
  change_column :notes, :data, :text
end