Files
sifatbaho-php/database/migrations/2022_12_07_132103_create_tracking_actions.php
2026-04-05 05:31:24 +05:00

39 lines
943 B
PHP
Executable File

<?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');
}
};