This commit is contained in:
ct
2025-07-16 12:01:39 +08:00
parent 326c6e3507
commit d4b69df538
14 changed files with 864 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
<?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('tracking_searches', function (Blueprint $table) {
$table->id();
// Common fields
$table->string('device_id');
$table->text('user_agent')->nullable();
$table->string('ip_address')->nullable();
$table->enum('platform', ['web', 'ios', 'android'])->default('web');
// Search-specific fields
$table->enum('search_type', ['meme', 'background']);
$table->text('search_query');
$table->json('search_filters')->nullable();
// Timestamps
$table->timestamp('action_at');
$table->timestamps();
// Indexes
$table->index(['device_id', 'action_at']);
$table->index(['search_type', 'action_at']);
$table->index('platform');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('tracking_searches');
}
};

View File

@@ -0,0 +1,49 @@
<?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('tracking_content_selections', function (Blueprint $table) {
$table->id();
// Common fields
$table->string('device_id');
$table->text('user_agent')->nullable();
$table->string('ip_address')->nullable();
$table->enum('platform', ['web', 'ios', 'android'])->default('web');
// Content selection fields
$table->enum('content_type', ['meme', 'background']);
$table->unsignedBigInteger('content_id');
$table->string('content_name');
$table->text('search_query')->nullable();
$table->enum('selection_method', ['search', 'browse', 'featured', 'recent']);
// Timestamps
$table->timestamp('action_at');
$table->timestamps();
// Indexes
$table->index(['device_id', 'action_at']);
$table->index(['content_type', 'content_id']);
$table->index(['selection_method', 'action_at']);
$table->index('platform');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('tracking_content_selections');
}
};

View File

@@ -0,0 +1,58 @@
<?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('tracking_exports', function (Blueprint $table) {
$table->id();
// Common fields
$table->string('device_id');
$table->text('user_agent')->nullable();
$table->string('ip_address')->nullable();
$table->enum('platform', ['web', 'ios', 'android'])->default('web');
// Export-specific fields
$table->unsignedBigInteger('meme_id')->nullable();
$table->unsignedBigInteger('meme_media_id')->nullable();
$table->unsignedBigInteger('background_media_id')->nullable();
$table->json('caption_texts');
$table->enum('export_format', ['mov', 'webm', 'gif', 'webp']);
$table->enum('export_quality', ['standard', 'premium'])->default('standard');
$table->enum('export_status', ['initiated', 'processing', 'completed', 'failed'])->default('initiated');
$table->text('error_message')->nullable();
// Timestamps
$table->timestamp('action_at');
$table->timestamp('completed_at')->nullable();
$table->timestamps();
// Foreign key constraints
$table->foreign('meme_id')->references('id')->on('memes')->onDelete('set null');
$table->foreign('meme_media_id')->references('id')->on('meme_medias')->onDelete('set null');
$table->foreign('background_media_id')->references('id')->on('background_medias')->onDelete('set null');
// Indexes
$table->index(['device_id', 'action_at']);
$table->index(['export_status', 'action_at']);
$table->index(['export_format', 'action_at']);
$table->index('platform');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('tracking_exports');
}
};