Laravel 4使用UUID作为主键

时间:2013-06-21 18:07:29

标签: php mysql laravel primary-key uuid

我正在设置我的第一个Laravel 4应用程序,规范要求id字段为varchar(36)并且是UUID。

使用Eloquent,我对示例表的迁移如下所示:

Schema::create('users', function($table)
{
    $table->string('id', 36)->primary;
    $table->string('first_name', 50);
    $table->string('last_name', 50);
    $table->string('email')->unique();
    $table->string('password', 60);
    $table->timestamps();
    $table->softDeletes();
});

创建users表时,id字段未定义为PK或唯一。它被定义为varchar(36)NOT NULL。

为什么在我运行迁移时会发生这种情况?


我最初的问题是关于使用UUID,但我有意识地通过将此添加到我的用户模型解决了以防其他人看到此帖子:

protected $hidden = array('password');

protected $fillable = array('id', 'first_name', 'last_name', 'email', 'password');

这是我添加用户的路线(我使用的是创建UUID的函数):

Route::post('signup', function()
{
    $userdata = array(
        'id' => gen_uuid(),
        'first_name' => Input::get('first_name'),
        'last_name' => Input::get('last_name'),
        'email' => Input::get('email'),
        'password' => Hash::make(Input::get('password'))    
    );

    $user = new User($userdata);
    $user->save();

    return View::make('login/login')->with('userdata', $userdata);
}); 

1 个答案:

答案 0 :(得分:8)

这一行

$table->string('id', 36)->primary;

必须更改为

$table->string('id', 36)->primary();