Biginteger in Schema Builder Laravel 4 -
how can biginteger type in table row schema builder in laravel 4.
thx all.
biginteger() present in laravel 4's schema builder, migration should this:
public function up() { schema::create('users', function($table) { $table->increments('id'); $table->biginteger('human_lives'); }); }
Comments
Post a Comment