adamsaghy commented on code in PR #2505:
URL: https://github.com/apache/fineract/pull/2505#discussion_r943897282
##########
fineract-provider/src/main/java/org/apache/fineract/commands/domain/CommandSource.java:
##########
@@ -72,16 +71,24 @@ public class CommandSource extends
AbstractPersistableCustom {
@JoinColumn(name = "maker_id", nullable = false)
private AppUser maker;
- @Column(name = "made_on_date", nullable = false)
- private LocalDateTime madeOnDate;
+ /*
+ * Deprecated: Columns and data left untouched to help migration.
+ *
+ * @Column(name = "made_on_date", nullable = false) private LocalDateTime
madeOnDate;
+ *
+ * @Column(name = "checked_on_date", nullable = true) private
LocalDateTime checkedOnDate;
+ */
+
+ @Column(name = "made_on_utc", nullable = false)
Review Comment:
Nah.. you are right... I just rename the column... :D
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]