blob: 50e926ab2c38be6d685e50a73768eae0e3025eb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateCharacterItems < ActiveRecord::Migration[6.1]
def change
create_table :character_items do |t|
t.references :character, null: false, foreign_key: true
t.references :item, null: false, foreign_key: true
t.integer :quantity
t.timestamps
end
end
end
|