fix some compile errors after switching to hibernate-panache-kotlin

This commit is contained in:
Nico Fricke 2024-06-05 16:15:13 +02:00
parent d729a5f51d
commit b3413ef2f2
2 changed files with 2 additions and 2 deletions

View File

@ -13,4 +13,4 @@ abstract class BaseEntity(
var id: Long? = null,
@Column(nullable = false, name = "created_at")
var createdAt: Instant = Instant.now()
) : PanacheEntityBase()
) : PanacheEntityBase

View File

@ -1,6 +1,6 @@
package net.nifni.ours.database.user
import io.quarkus.hibernate.orm.panache.PanacheRepository
import io.quarkus.hibernate.orm.panache.kotlin.PanacheRepository
import jakarta.enterprise.context.ApplicationScoped
@ApplicationScoped