Class: ExpandHostComment

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/20101203000001_expand_host_comment.rb

Class Method Summary collapse

Class Method Details

.downObject



7
8
9
# File 'db/migrate/20101203000001_expand_host_comment.rb', line 7

def self.down
  change_column :hosts, :comments, :string, :limit => 4096
end

.upObject



3
4
5
# File 'db/migrate/20101203000001_expand_host_comment.rb', line 3

def self.up
  change_column :hosts, :comments, :text
end