mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 23:37:30 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			782 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			782 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class UpdateSeeder extends Seeder
 | |
| {
 | |
|     /**
 | |
|      * Run the database seeds.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function run()
 | |
|     {
 | |
|         $this->command->info('Running UpdateSeeder...');
 | |
| 
 | |
|         $this->call('PaymentLibrariesSeeder');
 | |
|         $this->call('FontsSeeder');
 | |
|         $this->call('GatewayTypesSeeder');
 | |
|         $this->call('BanksSeeder');
 | |
|         $this->call('InvoiceStatusSeeder');
 | |
|         $this->call('PaymentStatusSeeder');
 | |
|         $this->call('CurrenciesSeeder');
 | |
|         $this->call('DateFormatsSeeder');
 | |
|         $this->call('InvoiceDesignsSeeder');
 | |
|         $this->call('PaymentTermsSeeder');
 | |
|         $this->call('PaymentTypesSeeder');
 | |
|         $this->call('LanguageSeeder');
 | |
|         $this->call('IndustrySeeder');
 | |
| 
 | |
|         Cache::flush();
 | |
|     }
 | |
| }
 |