<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class SocialAccounts extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('social_accounts', function (Blueprint $table) { $table->id(); $table->bigInteger('user_id')->unsigned(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); $table->string('provider_name')->nullable(); $table->string('provider_id')->unique()->nullable(); $table->timestamps(); }); Schema::table('users', function (Blueprint $table) { //$table->dropColumn('provider'); //$table->dropColumn('provider_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // Schema::dropIfExists('social_accounts'); } }