Answers for "laravel migration id as string"

PHP
20

foreign id laravel migration

$table->unsignedBigInteger('user_id');
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
Posted by: Guest on June-21-2021
3

laravel migration integer

$table->integer('votes');
Posted by: Guest on March-22-2021

Code answers related to "laravel migration id as string"

Browse Popular Code Answers by Language