basic profile edit page, not working yet

This commit is contained in:
2018-07-22 20:49:22 +02:00
parent 96efa3fa15
commit ddb885b4e2
11 changed files with 96 additions and 18 deletions
@@ -16,6 +16,7 @@ class CreateEmailConfirmationsTable extends Migration
Schema::create('email_confirmations', function (Blueprint $table) {
$table->unsignedInteger('user_id')->index();
$table->timestamp('created_at')->nullable();
$table->string('email');
$table->string('token');
});
}