Created
October 23, 2020 06:01
-
-
Save andyyou/b14be56ba1b14c89cc315d2a04ca33c2 to your computer and use it in GitHub Desktop.
Markdium-Laravel 8 - Integrate Jetstream + Socialite in 30 mins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function up() | |
{ | |
Schema::table('users', function (Blueprint $table) { | |
$table->dropUnique(['email']); | |
$table->string('password')->nullable()->change(); | |
$table->json('social')->nullable(); | |
$table->softDeletes(); | |
$table->unique(['email', 'deleted_at']); | |
}); | |
} | |
public function down() | |
{ | |
Schema::table('users', function (Blueprint $table) { | |
$table->dropUnique(['email', 'deleted_at']); | |
$table->dropSoftDeletes(); | |
$table->dropColumn(['social']); | |
$table->string('password')->change(); | |
$table->string('email')->unique()->change(); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment