summaryrefslogtreecommitdiff
path: root/db/migrate/20210502212517_create_items.rb
blob: 1bb17ce7783339de183839f94b4db528e4a78886 (plain)
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