OSDN Git Service

fix extend
[pettanr/pettanr.git] / db / migrate / 20131121230958_artist_belongs_to_user.rb
1 class ArtistBelongsToUser < ActiveRecord::Migration
2   def up
3     add_column :artists, :user_id, :integer
4     add_column :artists, :provider_id, :integer
5   end
6
7   def down
8   end
9 end