mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 03:37:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			464 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			464 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| class DatabaseSeeder extends Seeder {
 | |
| 
 | |
| 	/**
 | |
| 	 * Run the database seeds.
 | |
| 	 *
 | |
| 	 * @return void
 | |
| 	 */
 | |
| 	public function run()
 | |
| 	{
 | |
| 		$this->command->info('Running DatabaseSeeder');
 | |
| 
 | |
| 		Eloquent::unguard();
 | |
| 
 | |
| 		$this->call('UserTableSeeder');
 | |
| 		$this->call('ConstantsSeeder');
 | |
| 
 | |
| 		$this->call('CountriesSeeder');
 | |
| 		$this->command->info('Seeded the countries!'); 
 | |
| 
 | |
| 		$this->call('PaymentLibrariesSeeder');
 | |
| 		$this->command->info('Seeded the Payment Libraries!'); 
 | |
| 	}
 | |
| 
 | |
| } |