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