D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
euphoriahub.store
/
database
/
migrations
/
Filename :
2023_04_17_095721_create_shop_followers_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateShopFollowersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('shop_followers', function (Blueprint $table) { $table->id(); $table->integer('shop_id'); // Shop Table (Shop ID) $table->integer('user_id')->comment('Customer ID'); // User Table (Customer ID) $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('shop_followers'); } }