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

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -