1

如何在 Laravel 4 中使用 Schema builder 在表行中执行 biginteger 类型。

谢谢大家。

4

1 回答 1

4

bigInteger() 存在于 Laravel 4 的 Schema Builder 中,因此您的迁移应如下所示:

public function up()
{
    Schema::create('users', function($table)
    {
        $table->increments('id');

        $table->bigInteger('human_lives');
    });
}
于 2013-05-15T18:26:43.290 回答