summaryrefslogtreecommitdiff
path: root/db/migrate/20210614004827_create_item_infixes.rb
blob: 5b49892acf7ecbb0306b4e6d0e25fa9307b05f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateItemInfixes < ActiveRecord::Migration[6.1]
  def change
    create_table :item_infixes do |t|
      t.references :character, null: false, foreign_key: true
      t.references :item, null: false, foreign_key: true
      t.references :skill, null: false, foreign_key: true

      t.timestamps
    end
  end
end