From 029753cc290b9450b76c446d58aaac2d7e4f6f5b Mon Sep 17 00:00:00 2001 From: Rodrigo Turini Date: Sun, 15 Apr 2018 21:30:29 -0300 Subject: [PATCH] HHH-12365 - User Guide: call_key should change to call_timestamp_epoch --- .../collections-map-custom-key-type-sql-example.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/src/main/asciidoc/userguide/chapters/domain/extras/collections/collections-map-custom-key-type-sql-example.sql b/documentation/src/main/asciidoc/userguide/chapters/domain/extras/collections/collections-map-custom-key-type-sql-example.sql index d8fe7c6424..6674e0bdf0 100644 --- a/documentation/src/main/asciidoc/userguide/chapters/domain/extras/collections/collections-map-custom-key-type-sql-example.sql +++ b/documentation/src/main/asciidoc/userguide/chapters/domain/extras/collections/collections-map-custom-key-type-sql-example.sql @@ -7,10 +7,10 @@ create table call_register ( person_id int8 not null, phone_number int4, call_timestamp_epoch int8 not null, - primary key (person_id, call_key) + primary key (person_id, call_timestamp_epoch) ) alter table if exists call_register add constraint FKsn58spsregnjyn8xt61qkxsub foreign key (person_id) - references person \ No newline at end of file + references person