Skip to content

Instantly share code, notes, and snippets.

@jobcerto
Created May 24, 2018 15:54
Show Gist options
  • Save jobcerto/e5984891674bb900a9488deaa659336a to your computer and use it in GitHub Desktop.
Save jobcerto/e5984891674bb900a9488deaa659336a to your computer and use it in GitHub Desktop.
<?php
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment