Skip to content

Commit 1412dd5

Browse files
Updated db defined type strings documentation (#1)
1 parent dd2b640 commit 1412dd5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

REFERENCE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,15 +1138,15 @@ Default value: `$name`
11381138

11391139
Data type: `Any`
11401140

1141-
The character set for the database.
1141+
The character set for the database. Must be set with collate to avoid corrective changes.
11421142

11431143
Default value: `'utf8'`
11441144

11451145
##### <a name="collate"></a>`collate`
11461146

11471147
Data type: `Any`
11481148

1149-
The collation for the database.
1149+
The collation for the database. Must be set with charset to avoid corrective changes.
11501150

11511151
Default value: `'utf8_general_ci'`
11521152

@@ -1556,7 +1556,7 @@ Hash a string as mysql's "PASSWORD()" function would do it
15561556

15571557
#### `mysql::password(Variant[String, Sensitive[String]] $password, Optional[Boolean] $sensitive)`
15581558

1559-
Hash a string as mysql's "PASSWORD()" function would do it
1559+
The mysql::password function.
15601560

15611561
Returns: `Variant[String, Sensitive[String]]` hash
15621562
The mysql password hash from the clear text password.

manifests/db.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
# @param dbname
1919
# The name of the database to create.
2020
# @param charset
21-
# The character set for the database.
21+
# The character set for the database. Must be set with collate to avoid corrective changes.
2222
# @param collate
23-
# The collation for the database.
23+
# The collation for the database. Must be set with charset to avoid corrective changes.
2424
# @param host
2525
# The host to use as part of user@host for grants.
2626
# @param grant

0 commit comments

Comments
 (0)