Refactor the database, in preparation to moving to postgresql

This commit is contained in:
Deon George
2022-10-23 13:46:46 +11:00
parent 2495e4675c
commit 5745c67538
45 changed files with 530 additions and 1553 deletions

View File

@@ -14,7 +14,7 @@ class CreateUsersTable extends Migration
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();