有没有办法将最大值设置为整数字段的默认值?换句话说,我正在寻找一种简单而优雅的方法来替换999
下面代码中的硬编码值。
Schema::create('files', function(Blueprint $table)
{
// . . .
$table->integer('display_order')->default(999); // <-- MAX_VALUE instead of 999
// . . .
});
有没有办法将最大值设置为整数字段的默认值?换句话说,我正在寻找一种简单而优雅的方法来替换999
下面代码中的硬编码值。
Schema::create('files', function(Blueprint $table)
{
// . . .
$table->integer('display_order')->default(999); // <-- MAX_VALUE instead of 999
// . . .
});
可以看到 PHP 有Predefined Constants
PHP_INT_MAX (integer) 此 PHP 版本支持的最大整数。通常是 int(2147483647)。自 PHP 5.0.5 起可用