File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
modules/db-skunk/src/main/scala/pillars/db Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -179,17 +179,17 @@ object DatabaseTable extends RefinedSubtype[String, DatabaseTableConstraint]
179179
180180private type DatabaseUserConstraint = Not [Blank ] `DescribedAs` " Database user must not be blank"
181181
182- type DatabaseUser = DatabaseUser .T
182+ type DatabaseUser = DatabaseUser .T
183183object DatabaseUser extends RefinedSubtype [String , DatabaseUserConstraint ]
184184
185185private type DatabasePasswordConstraint = Not [Blank ] `DescribedAs` " Database password must not be blank"
186186
187- type DatabasePassword = DatabasePassword .T
187+ type DatabasePassword = DatabasePassword .T
188188object DatabasePassword extends RefinedSubtype [String , DatabasePasswordConstraint ]
189189
190190private type PoolSizeConstraint = GreaterEqual [1 ] `DescribedAs` " Pool size must be greater or equal to 1"
191191
192- type PoolSize = PoolSize .T
192+ type PoolSize = PoolSize .T
193193object PoolSize extends RefinedSubtype [Int , PoolSizeConstraint ]
194194
195195private type VersionConstraint =
You can’t perform that action at this time.
0 commit comments