0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00

chore: remove console log

This commit is contained in:
bholmesdev 2024-02-08 16:30:52 -05:00
parent 7a943d1ef1
commit 377e086a2c

View file

@ -117,8 +117,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.`