0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00

chore: remove console log

This commit is contained in:
bholmesdev 2024-02-08 16:30:52 -05:00
parent 1620ed1003
commit 055605b009

View file

@ -116,8 +116,6 @@ export function getCreateForeignKeyQueries(collectionName: string, collection: D
const fields = asArray(foreignKey.fields);
const references = asArray(foreignKey.references);
console.log(references[0]);
if (fields.length !== references.length) {
throw new Error(
`Foreign key on ${collectionName} is misconfigured. \`fields\` and \`references\` must be the same length.`