laravel migration add integer column code example
Example 1: laravel migration integer
$table->bigInteger('votes');
Example 2: laravel 6 migration add column to existing table
migration add column to existing table in laravel 6
$table->bigInteger('votes');
migration add column to existing table in laravel 6