blob: d579ea0fe3880da8c968a993c3f2f49076ca5c4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateCharacterSkills < ActiveRecord::Migration[6.1]
def change
create_table :character_skills do |t|
t.references :character, null: false, foreign_key: true
t.references :skill, null: false, foreign_key: true
t.bigint :xp
t.timestamps
end
end
end
|