Skip to content

Commit

Permalink
release: 1.0.1 (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb authored Dec 23, 2024
2 parents cc4de1a + c755abc commit 97a3f3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import java.time.Instant
abstract class AbstractTime(
@CreatedDate
@Column(name = "created_at")
val createdAt: Instant = Instant.now(),
var createdAt: Instant = Instant.now(),

@LastModifiedDate
@Column(name = "modified_at")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import java.time.Instant
abstract class AbstractTime(
@CreatedDate
@Column(name = "created_at")
val createdAt: Instant = Instant.now(),
var createdAt: Instant = Instant.now(),

@LastModifiedDate
@Column(name = "modified_at")
Expand Down

0 comments on commit 97a3f3a

Please sign in to comment.