mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-02 03:51:18 +00:00
27 lines
545 B
PHP
27 lines
545 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Created by PhpStorm.
|
||
|
|
* User: sander
|
||
|
|
* Date: 03/07/14
|
||
|
|
* Time: 21:06
|
||
|
|
*/
|
||
|
|
class DefaultUserSeeder extends Seeder
|
||
|
|
{
|
||
|
|
public function run()
|
||
|
|
{
|
||
|
|
DB::table('users')->delete();
|
||
|
|
|
||
|
|
User::create(
|
||
|
|
[
|
||
|
|
'email' => 's@nder.be',
|
||
|
|
'password' => Hash::make('sander'),
|
||
|
|
'verification' => null,
|
||
|
|
'reset' => null,
|
||
|
|
'remember_token' => null,
|
||
|
|
'migrated' => false
|
||
|
|
]
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|