Skip to content

Instantly share code, notes, and snippets.

@wichaksono
Created March 10, 2018 02:52
Show Gist options
  • Save wichaksono/b4bbdb7b60665d0d133d30de169a5b6b to your computer and use it in GitHub Desktop.
Save wichaksono/b4bbdb7b60665d0d133d30de169a5b6b to your computer and use it in GitHub Desktop.
Schema::create('social_accounts', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->nullable();
$table->string('provider_user_id');
$table->string('provider');
$table->timestamps();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment