Skip to content

Commit 9613a5b

Browse files
authored
Merge pull request #72 from DDD-Community/dev
hotfix : 회원 Default Reminder Time 15:00로 변경
2 parents 4657e1f + fd58a7f commit 9613a5b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/main/java/be/ddd/domain/entity/member/NotificationSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class NotificationSettings extends BaseTimeEntity {
3636
private boolean remindersEnabled = true;
3737

3838
@Column(name = "reminder_time", nullable = false)
39-
private LocalTime reminderTime = LocalTime.of(21, 0);
39+
private LocalTime reminderTime = LocalTime.of(15, 0);
4040

4141
@Column(name = "risk_warnings_enabled", nullable = false)
4242
@ColumnDefault("true")
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
UPDATE notification_settings
2+
SET reminder_time = '15:00:00';
3+
4+
ALTER TABLE notification_settings
5+
ALTER COLUMN reminder_time SET DEFAULT '15:00:00';

0 commit comments

Comments
 (0)