11 lines
204 B
Ruby
11 lines
204 B
Ruby
|
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
|