1
0
mirror of https://github.com/flarum/core.git synced 2025-08-09 18:07:02 +02:00

Very rough implementation of forgot password

This commit is contained in:
Toby Zerner
2015-05-26 11:14:06 +09:30
parent d481a38029
commit feb4676aa0
18 changed files with 376 additions and 3 deletions

View File

@@ -14,7 +14,6 @@ class CreateUsersTable extends Migration
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('username', 100)->unique();
$table->string('email', 150)->unique();