add fake data

This commit is contained in:
2025-08-05 14:03:46 +03:30
parent 0c54404d32
commit 8c64f02eac
10 changed files with 47 additions and 11 deletions

View File

@@ -16,6 +16,7 @@ return new class extends Migration
$table->integer('duration');
$table->dateTime('date');
$table->string('voice');
$table->string('description')->nullable();
$table->integer('message_quality');
$table->integer('format_quality');
$table->integer('type_id');

View File

@@ -19,7 +19,7 @@ return new class extends Migration
$table->integer('review_duration')->nullable();
$table->dateTime('listen_at')->nullable();
$table->boolean('is_listen')->default(false);
$table->foreignId('action_id')->nullable()->constrained();
$table->foreignId('action_id')->nullable()->constrained('people_message_actions');
$table->string('action_name')->nullable();
$table->string('description')->nullable();
$table->unsignedBigInteger('savaneh_id')->nullable();