1
0
mirror of synced 2025-02-02 21:41:45 +03:00

Merge pull request #7401 from bobdenotter/patch-1

[docs] Fix docblock in `inheritance-mapping.rst`
This commit is contained in:
Michael Moravec 2018-09-23 05:34:59 +02:00 committed by GitHub
commit c8bf06d549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
* )
* )
* })