class CreateItems < ActiveRecord::Migration[6.1] def change create_table :items do |t| t.string :gid t.string :name t.text :description t.integer :equip_slot t.boolean :usable t.jsonb :whatnot t.timestamps end end end