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