OSDN Git Service

fix extend for profiler
[pettanr/pettanr.git] / db / migrate / 20130607101909_move_balloon_caption_to_sb.rb
1 class MoveBalloonCaptionToSb < ActiveRecord::Migration
2   def up
3     add_column :speech_balloons, :caption, :text
4     remove_column :balloons, :caption
5   end
6
7   def down
8     remove_column :speech_balloons, :caption
9     add_column :balloons, :caption, :string
10   end
11 end