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