Schema Builder length of an integer

前端 未结 6 936
一整个雨季
一整个雨季 2021-01-01 21:17

I\'ve been searching around and the question was asked a few times, but no-one seem to be able to give a definite answer to it. How do you specify the integer length for the

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-01 21:42

    $table->bigInteger('variable');
    $table->integer('variable');
    $table->mediumInteger('variable'); 
    $table->smallInteger('variable');
    $table->tinyInteger('variable');
    $table->unsignedBigInteger('variable');
    $table->unsignedMediumInteger('variable'); 
    $table->unsignedSmallInteger('variable');  
    $table->unsignedTinyInteger('variable');  
    

    https://laravel.com/docs/5.7/migrations

提交回复
热议问题