0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -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(),
},
indexes: {
recipeIdx: { on: 'recipeId', unique: true },
recipeIdx: { on: 'recipeId' },
},
});