0

有没有办法将最大值设置为整数字段的默认值?换句话说,我正在寻找一种简单而优雅的方法来替换999下面代码中的硬编码值。

Schema::create('files', function(Blueprint $table)
{
    // . . .
    $table->integer('display_order')->default(999); // <-- MAX_VALUE instead of 999
    // . . .
});
4

1 回答 1

1

可以看到 PHP 有Predefined Constants

PHP_INT_MAX (integer) 此 PHP 版本支持的最大整数。通常是 int(2147483647)。自 PHP 5.0.5 起可用

于 2016-07-28T19:39:42.080 回答