We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent add9679 commit 0fdcd87Copy full SHA for 0fdcd87
1 file changed
tests/Provider/SchemaProvider.php
@@ -163,15 +163,15 @@ public function columns(): array
163
'numeric_col' => [
164
'type' => 'decimal',
165
'dbType' => 'decimal(5,2)',
166
- 'phpType' => 'string',
+ 'phpType' => 'double',
167
'primaryKey' => false,
168
'allowNull' => true,
169
'autoIncrement' => false,
170
'enumValues' => null,
171
'size' => 5,
172
'precision' => 5,
173
'scale' => 2,
174
- 'defaultValue' => '33.22',
+ 'defaultValue' => 33.22,
175
],
176
'time' => [
177
'type' => 'timestamp',
0 commit comments