OSDN Git Service

import all source code
[pettanr/pettanr.git] / db / migrate / 20111211052544_add_author_id_on_artist.rb
1 class AddAuthorIdOnArtist < ActiveRecord::Migration
2   def up
3     add_column :artists, :author_id, :integer
4   end
5
6   def down
7     remove_column :artists, :author_id
8   end
9 end