mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 06:02:39 +01:00
19 lines
287 B
PHP
19 lines
287 B
PHP
|
<?php
|
||
|
|
||
|
class UserTableSeeder extends Seeder
|
||
|
{
|
||
|
|
||
|
public function run()
|
||
|
{
|
||
|
DB::table('users')->delete();
|
||
|
/*
|
||
|
User::create(array(
|
||
|
'first_name' => 'Hillel',
|
||
|
'last_name' => 'Coren',
|
||
|
'email' => 'hillelcoren@gmail.com',
|
||
|
'password' => Hash::make('1234'),
|
||
|
));
|
||
|
*/
|
||
|
}
|
||
|
|
||
|
}
|