Skip to content

Instantly share code, notes, and snippets.

@wichaksono
Created March 10, 2018 02:51
Show Gist options
  • Save wichaksono/f0241049cb39bab67b9e9de3c4a70f2a to your computer and use it in GitHub Desktop.
Save wichaksono/f0241049cb39bab67b9e9de3c4a70f2a to your computer and use it in GitHub Desktop.
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique()->nullable();
$table->string('password')->nullable();
$table->string('avatar')->nullable();
$table->rememberToken();
$table->timestamps();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment