We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a7c5a5 commit d7cc612Copy full SHA for d7cc612
functions/New-DbaDbMaskingConfig.ps1
@@ -341,6 +341,12 @@ function New-DbaDbMaskingConfig {
341
$subType = "Float"
342
$MaxValue = $null
343
}
344
+ "money" {
345
+ $type = "Commerce"
346
+ $subType = "Price"
347
+ $min = -922337203685477.5808
348
+ $MaxValue = 922337203685477.5807
349
+ }
350
"smallint" {
351
$subType = "Number"
352
$MaxValue = 32767
@@ -349,6 +355,10 @@ function New-DbaDbMaskingConfig {
355
$subType = "Date"
356
357
358
+ "text" {
359
+ $subType = "String"
360
+ $maxValue = 2147483647
361
362
"tinyint" {
353
363
354
364
$MaxValue = 255
0 commit comments