如何在Laravel 4中使用“架构”构建器在表行中执行biginteger类型。
所有人都是。
答案 0 :(得分:4)
bigInteger()存在于Laravel 4的Schema Builder中,因此您的迁移应如下所示:
public function up()
{
Schema::create('users', function($table)
{
$table->increments('id');
$table->bigInteger('human_lives');
});
}