OSDN Git Service

fix peta test
[pettanr/pettanr.git] / db / migrate / 20130529090246_add_r_on_balloons.rb
1 class AddROnBalloons < ActiveRecord::Migration
2   def up
3     add_column :balloons, :r, :integer, :null => false, :default => 0
4   end
5
6   def down
7     remove_column :balloons, :r
8   end
9 end