To solve this, I added .modelContainer(for: DrinkModel.self)` to the <AppName>App.swift App Struct like so:
import SwiftUI
@main
struct DrinkLess_watchOS_Watch_AppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}.modelContainer(for: DrinkModel.self)
}
}