-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing generated option to documentation #11613
Conversation
@@ -239,6 +239,7 @@ Here is a complete list of ``Column``s attributes (all optional): | |||
- ``nullable`` (default: ``false``): Whether the column is nullable. | |||
- ``insertable`` (default: ``true``): Whether the column should be inserted. | |||
- ``updatable`` (default: ``true``): Whether the column should be updated. | |||
- ``generated`` (default: ``null``): Whether the generated strategy should be ``'NEVER'``, ``'INSERT'`` and ``ALWAYS``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NEVER
is a valid value so it should be mentioned. A default may change over time.
@@ -239,6 +239,7 @@ Here is a complete list of ``Column``s attributes (all optional): | |||
- ``nullable`` (default: ``false``): Whether the column is nullable. | |||
- ``insertable`` (default: ``true``): Whether the column should be inserted. | |||
- ``updatable`` (default: ``true``): Whether the column should be updated. | |||
- ``generated`` (default: ``null``): Whether the generated strategy should be ``'NEVER'``, ``'INSERT'`` and ``ALWAYS``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NEVER
is a valid value so it should be mentioned. A default may change over time.
Please kindly squash your commits together. If you don't, we'll try to remember to do it for you but it's best if you save us this trouble. How to do that?
|
797c6c9
to
95b0f5c
Compare
@greg0ire done. PS you can also enable squash or rebase merge in the Github UI in the Settings to merge a pull request via squash or rebased methods. |
I know but again…
I cannot guess how you are going to combine the commit messages together. |
The base branch was changed.
Thanks @alexander-schranz |
Seems not be documented in: #9118