HHH-4562 - Fixed the typo in chapter 7.3.1. Added bigint after personId

This commit is contained in:
Kamyar Sajjadi 2012-12-12 16:37:46 +01:00 committed by brmeyer
parent bc7a2c2d24
commit 4cdaae7a29
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ create table Address ( addressId bigint not null primary key, personId bigint no
</class>]]></programlisting>
<programlisting><![CDATA[
create table Person ( personId bigint not null primary key )
create table PersonAddress ( personId not null, addressId bigint not null primary key )
create table PersonAddress ( personId bigint not null, addressId bigint not null primary key )
create table Address ( addressId bigint not null primary key )
]]></programlisting>