PATH:
home
/
rwabteecom
/
public_html
/
database
/
migrations
/
Editing: 2024_01_31_120653_business_cards.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. */ public function up(): void { Schema::create('business_cards', function (Blueprint $table) { $table->id(); $table->string('tenant_id', 191); $table->unsignedBigInteger('vcard_id')->nullable(); $table->string('url'); $table->unsignedBigInteger('group_id'); $table->timestamps(); $table->foreign('tenant_id') ->references('id') ->on('tenants') ->onUpdate('cascade') ->onDelete('cascade'); $table->foreign('vcard_id') ->references('id') ->on('vcards') ->onUpdate('cascade') ->onDelete('cascade'); $table->foreign('group_id') ->references('id') ->on('groups') ->onUpdate('cascade') ->onDelete('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('business_cards'); } };
SAVE
CANCEL