1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-05 18:52:44 +01:00

Merge pull request #5160 from turbo124/v5-stable

Update demo data
This commit is contained in:
David Bomba 2021-03-17 21:26:59 +11:00 committed by GitHub
commit 5041e11933
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,6 +165,7 @@ class DemoMode extends Command
'account_id' => $account->id,
'email' => 'small@example.com',
'confirmation_code' => $this->createDbHash(config('database.default')),
'email_verified_at' => now(),
]);
}
@ -199,6 +200,7 @@ class DemoMode extends Command
'password' => Hash::make('Password0'),
'account_id' => $account->id,
'confirmation_code' => $this->createDbHash(config('database.default')),
'email_verified_at' => now(),
]);
$company_token = new CompanyToken;