1
0
mirror of synced 2025-03-10 23:06:06 +03:00

Fix docblock in inheritance-mapping.rst

This commit is contained in:
Bob den Otter 2018-09-17 17:22:01 +02:00 committed by Michael Moravec
parent 96c344d22b
commit 7400d51444
No known key found for this signature in database
GPG Key ID: 946F139F96C1C1B5

View File

@ -493,7 +493,7 @@ Could be used by an entity that extends a mapped superclass to override a field
* column=@Column(
* name = "guest_id",
* type = "integer",
length = 140
* length = 140
* )
* ),
* @AttributeOverride(name="name",
@ -501,7 +501,7 @@ Could be used by an entity that extends a mapped superclass to override a field
* name = "guest_name",
* nullable = false,
* unique = true,
length = 240
* length = 240
* )
* )
* })