Update 2024_06_11_081614_add_www_non_www_redirect.php

This commit is contained in:
peaklabs-dev
2024-12-10 18:31:40 +01:00
parent 8d779c88ff
commit cfae39a517

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');
});
}