Skip to content

Instantly share code, notes, and snippets.

@patrickcurl
Last active August 11, 2021 23:12
Show Gist options
  • Save patrickcurl/62e1bc5030eaa7a0d9fa3a3c73b80a0d to your computer and use it in GitHub Desktop.
Save patrickcurl/62e1bc5030eaa7a0d9fa3a3c73b80a0d to your computer and use it in GitHub Desktop.
create_users_table.php
<?php
// ...
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('username')->unique();
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$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