sifatbaho

This commit is contained in:
2026-04-05 05:31:24 +05:00
commit df3d57f503
2609 changed files with 369825 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tracking_actions', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->references('id')->on('users')->nullable();
$table->bigInteger('order_id')->nullable();
$table->string('images')->nullable();
$table->string('msg');
$table->text('params');
$table->string('type');
$table->string('order_type')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tracking_actions');
}
};