Update 2024_06_11_081614_add_www_non_www_redirect.php
This commit is contained in:
@@ -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');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user