Skip to content

Commit cc53bc7

Browse files
committed
work
1 parent c10ac2b commit cc53bc7

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

etc/db2.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ COPY public.user_account_password (id, row_created_at, row_updated_at, uuid, use
493493
-- Data for Name: user_message; Type: TABLE DATA; Schema: public; Owner: simpleworklist
494494
--
495495

496-
COPY public.user_chat_message (id, row_created_at, row_updated_at, uuid, message_text, read_by_receiver, user_account_id_receiver, user_account_id_sender) FROM stdin;
496+
COPY public.user_account_chat_message (id, row_created_at, row_updated_at, uuid, message_text, read_by_receiver, user_account_id_receiver, user_account_id_sender) FROM stdin;
497497
1000 2022-08-25 11:01:34.462 2022-08-25 11:02:11.189 2cf8f1e6-4491-4341-b6e9-97d053efec5a <p>Hallo, wie gehts?</p> t 1000 1001
498498
1001 2022-08-25 11:02:31.413 2022-08-25 11:02:50.516 321f5bc3-f7aa-4ef1-ba98-833e2eaba11f <p>ganz ok. uns selbst</p> t 1001 1000
499499
1003 2022-08-25 11:03:31.761 2022-08-25 11:03:41.188 dec17a2a-d0c1-404a-9b8e-3099e06217c1 <p>Wie stehen die Aktien?</p> t 1001 1000
@@ -571,7 +571,7 @@ SELECT pg_catalog.setval('public.user_account_sequence', 1050, true);
571571
-- Name: user_message_sequence; Type: SEQUENCE SET; Schema: public; Owner: simpleworklist
572572
--
573573

574-
SELECT pg_catalog.setval('public.user_chat_message_sequence', 1450, true);
574+
SELECT pg_catalog.setval('public.user_account_chat_message_sequence', 1450, true);
575575

576576

577577
--

src/main/java/org/woehlke/java/simpleworklist/application/framework/AuditModel.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@
1919
value = {"rowCreatedAt", "rowUpdatedAt"},
2020
allowGetters = true
2121
)
22-
//@ToString
2322
@Getter
2423
@Setter
25-
//@EqualsAndHashCode(callSuper=false)
2624
public class AuditModel extends Object implements Serializable {
2725

2826
private static final long serialVersionUID = 4399373914714726911L;

0 commit comments

Comments
 (0)