OSDN Git Service

t#30009:fix views
[pettanr/pettanr.git] / db / migrate / 20121106083518_add_caption_on_panel_pictures.rb
1 class AddCaptionOnPanelPictures < ActiveRecord::Migration
2   def up
3     add_column :panel_pictures, :caption, :string
4   end
5
6   def down
7     remove_column :panel_pictures, :caption
8   end
9 end