Skip to content

Commit

Permalink
Update create_filament_redirects_table.php.stub
Browse files Browse the repository at this point in the history
Remove index from from_url
  • Loading branch information
worldhck authored May 17, 2024
1 parent 9183bce commit 053608e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ return new class extends Migration {
Schema::create(config('filament-redirects.table_name'), function (Blueprint $table) {
$table->id();

$table->text('from_url')->index();
$table->text('from_url');
$table->text('to_url');
$table->integer('status')->default(301);

Expand Down

0 comments on commit 053608e

Please sign in to comment.