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 ca5185c commit 2844553Copy full SHA for 2844553
tests/SchemaRulesTest.php
@@ -258,11 +258,11 @@
258
$decimalNullableColumnName
259
) {
260
$table->float($floatColumnName);
261
- $table->unsignedFloat($floatUnsignedColumnName);
+ $table->float($floatUnsignedColumnName)->unsigned();
262
$table->double($doubleColumnName);
263
- $table->unsignedDouble($doubleUnsignedColumnName);
+ $table->double($doubleUnsignedColumnName)->unsigned();
264
$table->decimal($decimalColumnName);
265
- $table->unsignedDecimal($decimalUnsignedColumnName);
+ $table->decimal($decimalUnsignedColumnName)->unsigned();
266
$table->decimal($decimalNullableColumnName)->nullable();
267
});
268
0 commit comments