add new column in existing table in laravel migration

PHP
public function up()
{
    Schema::table('users', function($table) {
        $table->integer('paid');
    });
}php artisan make:migration add_paid_to_users_table --table=userspublic function down()
{
    Schema::table('users', function($table) {
        $table->dropColumn('paid');
    });
}Schema::table('users', function (Blueprint $table) {
	$table->dateTime('verify_date')->nullable()->after("password_updated_at");
});migration add new column to existing table in laravel 6
Source

Also in PHP: