New stuff pertaining to the import procedure and user registration.

This commit is contained in:
James Cole
2014-07-05 16:19:15 +02:00
parent c3254c2351
commit a0c0dc288d
23 changed files with 305 additions and 63 deletions

View File

@@ -18,7 +18,6 @@ class CreateUsersTable extends Migration {
$table->timestamps();
$table->string('email',100);
$table->string('password',60);
$table->string('verification',32)->nullable();
$table->string('reset',32)->nullable();
$table->string('remember_token',255)->nullable();
$table->boolean('migrated');

View File

@@ -16,7 +16,6 @@ class DefaultUserSeeder extends Seeder
[
'email' => 's@nder.be',
'password' => Hash::make('sander'),
'verification' => null,
'reset' => null,
'remember_token' => null,
'migrated' => false