1
0
Fork 0
dokkan-data-rails/db/migrate/20151020183709_add_stats_to_cards.rb

8 lines
208 B
Ruby
Raw Normal View History

2015-10-20 14:36:50 -04:00
class AddStatsToCards < ActiveRecord::Migration
def change
add_column :cards, :hp_stat_id, :integer
add_column :cards, :atk_stat_id, :integer
add_column :cards, :def_stat_id, :integer
end
end