string('manual_webhook_secret_github')->nullable(); $table->string('manual_webhook_secret_gitlab')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('applications', function (Blueprint $table) { $table->dropColumn('manual_webhook_secret_github'); $table->dropColumn('manual_webhook_secret_gitlab'); }); } };