Skip to content

Commit

Permalink
fix: createdAt을 var로 변경한다
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb committed Dec 23, 2024
1 parent cc4de1a commit c755abc
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 c755abc

Please sign in to comment.