0

Is there any way to set a maximum value as a default one for an integer field? In other words, I'm looking for a simple and elegant way to replace the hardcoded 999 value from the code below.

Schema::create('files', function(Blueprint $table)
{
    // . . .
    $table->integer('display_order')->default(999); // <-- MAX_VALUE instead of 999
    // . . .
});
Alex Lomia
  • 6,705
  • 12
  • 53
  • 87

1 Answers1

1

You can see that PHP has Predefined Constants

PHP_INT_MAX (integer) The largest integer supported in this build of PHP. Usually int(2147483647). Available since PHP 5.0.5

Jesús Amieiro
  • 2,443
  • 21
  • 15