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