Skip to content

Instantly share code, notes, and snippets.

@heinthanth
Last active July 21, 2019 08:00
Show Gist options
  • Save heinthanth/c7d8a368964b97178ba27266970e6028 to your computer and use it in GitHub Desktop.
Save heinthanth/c7d8a368964b97178ba27266970e6028 to your computer and use it in GitHub Desktop.
create_users_table
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('provider')->nullable();
$table->string('provider_id')->nullable();
$table->string('password')->nullable();
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment