blob: 4ac95434d75a219f27d402211537cd84ff565676 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class CreateEquipment < ActiveRecord::Migration[6.1]
def change
create_table :equipment do |t|
t.references :character, null: false, foreign_key: true
t.references :item, null: false, foreign_key: true
t.integer :slot
t.timestamps
end
remove_column :items, :equip_slot
end
end
|