mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 04:27:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			320 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			320 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class DatabaseSeeder extends Seeder {
 | |
| 
 | |
| 	/**
 | |
| 	 * Run the database seeds.
 | |
| 	 *
 | |
| 	 * @return void
 | |
| 	 */
 | |
| 	public function run()
 | |
| 	{
 | |
| 		$this->command->info('Running DatabaseSeeder');
 | |
| 
 | |
| 		Eloquent::unguard();
 | |
| 
 | |
| 		$this->call('ConstantsSeeder');
 | |
| 		$this->call('CountriesSeeder');
 | |
| 		$this->call('PaymentLibrariesSeeder');
 | |
| 	}
 | |
| 
 | |
| } |