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