summaryrefslogtreecommitdiff
path: root/db/migrate/20210518002820_create_hearths.rb
blob: 051a2e737a2b06afc0e3acfc3fb13183d4db05fb (plain)
1
2
3
4
5
6
7
8
9
class CreateHearths < ActiveRecord::Migration[6.1]
  def change
    create_table :hearths do |t|
      t.references :character, null: false, foreign_key: true

      t.timestamps
    end
  end
end