summaryrefslogtreecommitdiff
path: root/db/migrate/20210522201259_create_monsters.rb
blob: 39f0a1afae89b24b93f9d64639031b33abe0b1a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateMonsters < ActiveRecord::Migration[6.1]
  def change
    create_table :monsters do |t|
      t.string :gid
      t.string :name
      t.text :description
      t.jsonb :whatnot

      t.timestamps
    end
  end
end