1
0
Fork 0
dokkan-data-rails/db/migrate/20151006175429_create_passive_skills.rb

11 lines
204 B
Ruby
Raw Normal View History

2015-10-06 13:55:12 -04:00
class CreatePassiveSkills < ActiveRecord::Migration
def change
create_table :passive_skills do |t|
t.string :name
t.string :description
t.timestamps null: false
end
end
end