PATH:
home
/
rwabteecom
/
project_11
/
database
/
migrations
/
Editing: 2024_03_29_096542_create_analytics_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { public function up(): void { Schema::create('analytics', function (Blueprint $table) { $table->id(); $table->foreignId('domain_id')->nullable()->constrained()->nullOnDelete(); $table->foreignId('link_id')->nullable()->constrained()->nullOnDelete(); $table->string('ip'); $table->string('country')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('analytics'); } };
SAVE
CANCEL