V025 migration drops the column. Removed from Recipe entity, RecipeDetailResponse, RecipeSummaryResponse, RecipeRepository JPQL, RecipeService, and RecipeController. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
243 B
Java
13 lines
243 B
Java
package com.recipeapp.recipe.dto;
|
|
|
|
import java.util.UUID;
|
|
|
|
public record RecipeSummaryResponse(
|
|
UUID id,
|
|
String name,
|
|
short serves,
|
|
short cookTimeMin,
|
|
String effort,
|
|
String heroImagePreview
|
|
) {}
|