7e247e2f29
git-svn-id: file:///home/svn/framework3/trunk@9633 4d416f70-5f16-0410-b530-b9f4589650da
13 lines
202 B
Ruby
13 lines
202 B
Ruby
class ConvertServiceInfoToText < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
change_column :services, :info, :text
|
|
end
|
|
|
|
def self.down
|
|
change_column :services, :info, :string, :limit => 65536
|
|
end
|
|
|
|
end
|
|
|