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:
parent
8439766ae2
commit
a2d88545a4
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ const Ingredient = defineCollection({
|
||||||
recipeId: field.text(),
|
recipeId: field.text(),
|
||||||
},
|
},
|
||||||
indexes: {
|
indexes: {
|
||||||
recipeIdx: { on: 'recipeId', unique: true },
|
recipeIdx: { on: 'recipeId' },
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue