Merge branch 'next' into separate-success-and-failure-notifications

This commit is contained in:
Andras Bacsai
2024-12-11 08:42:35 +01:00
2 changed files with 13 additions and 2 deletions

View File

@@ -3,7 +3,6 @@
/public/build /public/build
/public/hot /public/hot
/public/storage /public/storage
/storage/*.key
/vendor /vendor
.env .env
.env.backup .env.backup
@@ -25,3 +24,15 @@ yarn-error.log
.ignition.json .ignition.json
.env.dusk.local .env.dusk.local
docker/coolify-realtime/node_modules docker/coolify-realtime/node_modules
/storage/*.key
/storage/app/backups
/storage/app/ssh/keys
/storage/app/ssh/mux
/storage/app/tmp
/storage/app/debugbar
/storage/logs
/storage/pail

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void public function up(): void
{ {
Schema::table('applications', function (Blueprint $table) { Schema::table('applications', function (Blueprint $table) {
$table->string('redirect')->enum('www', 'non-www', 'both')->default('both')->after('domain'); $table->enum('redirect', ['www', 'non-www', 'both'])->default('both')->after('domain');
}); });
} }