✏️ Fix typo for camelCase

This commit is contained in:
ValentinVignal 2022-12-01 23:41:32 +08:00
parent ce0568e70c
commit 2a8e9d7af0
No known key found for this signature in database
GPG Key ID: 040FFDADFB7EF05A
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ At the moment, drift supports these options:
* `store_date_time_values_as_text`: Whether date-time columns should be stored as ISO 8601 string instead of a unix timestamp.
For more information on these modes, see [datetime options]({{ '../Getting started/advanced_dart_tables#datetime-options' | pageUrl }}).
* `column_name_case` (defaults to `snake_case`): Controls how the column names are re-cased from the Dart identifiers.
The possible values are `preserve`, `camel_case`, `CONSTANT_CASE`, `snake_case`, `PascalCase`, `lowercase` and `UPPERCASE` (default: `snake_case`).
The possible values are `preserve`, `camelCase`, `CONSTANT_CASE`, `snake_case`, `PascalCase`, `lowercase` and `UPPERCASE` (default: `snake_case`).
## Assumed SQL environment

View File

@ -1,6 +1,6 @@
## 2.5.0-dev
- Adds the `column_name_case` option with the possible values: `preserve`, `camel_case`, `CONSTANT_CASE`, `snake_case`, `PascalCase`, `lowercase` and `UPPERCASE` (default: `snake_case`).
- Adds the `column_name_case` option with the possible values: `preserve`, `camelCase`, `CONSTANT_CASE`, `snake_case`, `PascalCase`, `lowercase` and `UPPERCASE` (default: `snake_case`).
## 2.4.0-dev