Answers for "laravel create with primary key"

PHP
1

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
2

laravel migration with primary key

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

Code answers related to "laravel create with primary key"

Browse Popular Code Answers by Language