i18n vocabulaire exos (fr/pt-BR) + Web Push rappels de série
Build & Deploy / build (push) Successful in 17s

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-19 03:46:43 +02:00
co-authored by Claude Opus 4.8
parent af32669931
commit fa3e59704b
23 changed files with 954 additions and 31 deletions
@@ -0,0 +1,23 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('streaks', function (Blueprint $table) {
// Date du dernier rappel push envoyé (anti-doublon : 1 rappel/jour max).
$table->date('last_reminded_on')->nullable()->after('freeze_last_granted_on');
});
}
public function down(): void
{
Schema::table('streaks', function (Blueprint $table) {
$table->dropColumn('last_reminded_on');
});
}
};