0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00

fix: remove unique constraint on recipeId

This commit is contained in:
bholmesdev 2024-01-29 18:20:49 -05:00
parent 8439766ae2
commit a2d88545a4

View file

@ -17,7 +17,7 @@ const Ingredient = defineCollection({
recipeId: field.text(), recipeId: field.text(),
}, },
indexes: { indexes: {
recipeIdx: { on: 'recipeId', unique: true }, recipeIdx: { on: 'recipeId' },
}, },
}); });