mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 22:54:25 +01:00
18 lines
228 B
PHP
18 lines
228 B
PHP
|
<?php
|
||
|
|
||
|
class DatabaseSeeder extends Seeder {
|
||
|
|
||
|
/**
|
||
|
* Run the database seeds.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function run()
|
||
|
{
|
||
|
Eloquent::unguard();
|
||
|
|
||
|
$this->call('UserTableSeeder');
|
||
|
$this->call('ConstantsSeeder');
|
||
|
}
|
||
|
|
||
|
}
|