OSDN Git Service

t#30021:add repeat on gp
[pettanr/pettanr.git] / db / migrate / 20121107091403_add_repeat_on_gp.rb
1 class AddRepeatOnGp < ActiveRecord::Migration
2   def up
3     add_column :ground_pictures, :repeat, :integer, :null => false, :default => 0
4     add_column :ground_pictures, :x, :integer, :null => false, :default => 0
5     add_column :ground_pictures, :y, :integer, :null => false, :default => 0
6   end
7
8   def down
9     remove_column :ground_pictures, :repeat
10     remove_column :ground_pictures, :x
11     remove_column :ground_pictures, :y
12   end
13 end