string('provider')->after('secret')->nullable(); } }); } /** * Reverse the migrations. * * @return void */ public function down() { if(Schema::hasTable('oauth_clients')) { Schema::table('oauth_clients', function (Blueprint $table) { $table->dropColumn('provider'); }); } } }