ALTER table migrations

PHP
php artisan make:migration add_paid_to_users_table --table=userspublic function up()
{
    Schema::table('users', function($table) {
        $table->integer('paid');
    });
}
Source

Also in PHP: