feat(api): fix version create

This commit is contained in:
Lars Hampe 2024-10-09 14:31:49 +02:00
parent 21dd7a28ec
commit 72082a51d1

View File

@ -61,7 +61,7 @@ export const createFunc = async ({
}
// Check if a version with the same version already exists
const versionResult = await db.query.version.findFirst({
const versionResult = await db.query.changelog_version.findFirst({
where: and(
eq(changelog_version.changelogId, payload.changelogId),
eq(changelog_version.version, validVersion),