Merge pull request #4536 from peaklabs-dev/fix-migration
Fix: Migration error
This commit is contained in:
commit
cbe9d28c2f
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@
|
|||
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');
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue