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

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
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');
});
}