13 lines
202 B
Ruby
Executable File
13 lines
202 B
Ruby
Executable File
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
|
|
|