diff --git a/versioned_docs/version-6.x.x/other-topics/naming-strategies.md b/versioned_docs/version-6.x.x/other-topics/naming-strategies.md index 2a60cba6..8cac6bb9 100644 --- a/versioned_docs/version-6.x.x/other-topics/naming-strategies.md +++ b/versioned_docs/version-6.x.x/other-topics/naming-strategies.md @@ -4,7 +4,7 @@ title: Naming Strategies ## The `underscored` option -Sequelize provides the `underscored` option for a model. When `true`, this option will set the `field` option on all attributes to the [snake_case](https://en.wikipedia.org/wiki/Snake_case) version of its name. This also applies to foreign keys automatically generated by associations and other automatically generated fields. Example: +Sequelize provides the `underscored` option for a model. When `true` (default: `false`), this option will set the `field` option on all attributes to the [snake_case](https://en.wikipedia.org/wiki/Snake_case) version of its name. This also applies to foreign keys automatically generated by associations and other automatically generated fields. Example: ```js const User = sequelize.define('user', { username: Sequelize.STRING }, {