OSDN Git Service

t#29312:any update
[pettanr/pettanr.git] / db / migrate / 20120815043236_rm_default_ls_on_artist.rb
1 class RmDefaultLsOnArtist < ActiveRecord::Migration
2   def up
3     remove_column :artists, :default_license_id
4   end
5
6   def down
7     remove_column :artists, :default_license_id, :integer , :null => false, :default => 0
8   end
9 end