reworked the guest pwa, modernized start and gallery page. added share link functionality.

This commit is contained in:
Codex Agent
2025-11-10 22:25:25 +01:00
parent 1e8810ca51
commit 1cec116933
22 changed files with 1208 additions and 476 deletions

View File

@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('photo_share_links', function (Blueprint $table) {
$table->id();
$table->foreignId('photo_id')->constrained()->cascadeOnDelete();
$table->string('slug', 64)->unique();
$table->string('created_by_device_id')->nullable();
$table->string('created_ip', 45)->nullable();
$table->timestamp('expires_at');
$table->timestamp('last_accessed_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('photo_share_links');
}
};