class CreateMeals < ActiveRecord::Migration[5.0]
  def change
    create_table :meals do |t|
      t.time :hour
      t.string :title
      t.text :body
      t.references :diet, foreign_key: true

      t.timestamps
    end
  end
end
