Update 2024_06_11_081614_add_www_non_www_redirect.php
This commit is contained in:
parent
8d779c88ff
commit
cfae39a517
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@
|
||||||
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');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue