I\'m just learning Laravel, and have a working migration file creating a users table. I am trying to populate a user record as part of the migration:
public
If you already have filled columns and have added new one or you want to fill out old column with new mock values , do this:
public function up() { DB::table('foydabars')->update( array( 'status' => '0' ) ); }