OSDN Git Service

fix extend for profiler
[pettanr/pettanr.git] / db / migrate / 20130601000336_add_working_panel_id_on_authors.rb
1 class AddWorkingPanelIdOnAuthors < ActiveRecord::Migration
2   def up
3     add_column :authors, :working_panel_id, :integer
4   end
5
6   def down
7     remove_column :authors, :working_panel_id
8   end
9 end