| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2023-08-22 | 1.1 kB | |
| Version v2.0.0 source code.tar.gz | 2023-08-22 | 20.5 kB | |
| Version v2.0.0 source code.zip | 2023-08-22 | 44.8 kB | |
| Totals: 3 Items | 66.4 kB | 0 | |
What's Changed
- Feature | Add support for retryUntil by @Sammyjo20 in https://github.com/Sammyjo20/laravel-haystack/pull/79
Upgrade from v1
You should add the following migration to your Laravel application to support the new "retryUntil" feature.
:::php
<?php
use Sammyjo20\LaravelHaystack\Models\Haystack;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up()
{
Schema::table('haystack_bales', function (Blueprint $table) {
$table->integer('retry_until')->after('attempts')->nullable();
});
}
public function down()
{
Schema::table('haystack_bales', function (Blueprint $table) {
$table->dropColumn('retry_until');
});
}
};
Full Changelog: https://github.com/Sammyjo20/laravel-haystack/compare/v0.12.0...v2.0.0