mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 22:54:25 +01:00
19 lines
287 B
PHP
Executable File
19 lines
287 B
PHP
Executable File
<?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'),
|
|
));
|
|
*/
|
|
}
|
|
|
|
} |