File: /www/wwwroot/www.ankua.asia/database/migrations/2023_11_29_074502_create_product_views.php
<?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('product_views', function (Blueprint $table) {
$table->id();
$table->integer('product_id')->nullable();
$table->integer('customer_id')->nullable();
$table->string('ip')->nullable();
$table->string('session_id')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('product_views');
}
};