Answers for "laravel changing primary key"

PHP
3

laravel model string primary key

class UserVerification extends Model
{
    protected $primaryKey = 'your_key_name'; // or null

    public $incrementing = false;

    // In Laravel 6.0+ make sure to also set $keyType
    protected $keyType = 'string';
}
Posted by: Guest on December-14-2020
4

laravel migration with primary key

$table->string('code', 30)->primary();
Posted by: Guest on May-24-2021

Browse Popular Code Answers by Language