php artisan make:migration create_users_table php artisan migrate
public function up() { Schema::table('users', function($table) { $table->integer('paid'); }); }