Skip to content

Commit

Permalink
Updated RecordDocumentModel.collectionName to not be final
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Feb 29, 2024
1 parent 4bc3665 commit b480690
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.outr.arango.core.{ComputeOn, ComputedValue}
import fabric.rw._

trait RecordDocumentModel[D <: RecordDocument[D]] extends DocumentModel[D] {
override final val collectionName: String = getClass.getSimpleName.replace("$", "")
override val collectionName: String = getClass.getSimpleName.replace("$", "")

val created: Field[Long] = field("created")
val modified: Field[Long] = field("modified")
Expand Down

0 comments on commit b480690

Please sign in to comment.