This commit is contained in:
sayaliparab
2024-05-30 19:41:43 +05:30
parent a35c6d90d0
commit ec679b83ae
14 changed files with 662 additions and 518 deletions

View File

@@ -0,0 +1,35 @@
<?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('iam_principal_restaurant_role', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('principal_xid');
$table->foreign('principal_xid')->references('id')->on('iam_principal')->onDelete('cascade');
$table->unsignedBigInteger('restaurant_xid');
$table->foreign('restaurant_xid')->references('id')->on('manage_restaurants')->onDelete('cascade');
$table->string('role')->nullable();
$table->integer('created_by')->nullable();
$table->integer('modified_by')->nullable();
$table->softDeletes();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('iam_principal_restaurant_role');
}
};