1 2 3 4 5 6 7 8 9 10 11 12 13 14
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