mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
New stuff pertaining to the import procedure and user registration.
This commit is contained in:
@@ -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');
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user