mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:37:30 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			939 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			939 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Illuminate\Database\Migrations\Migration;
 | |
| 
 | |
| class EncryptTokens extends Migration
 | |
| {
 | |
|     /**
 | |
|      * Run the migrations.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function up()
 | |
|     {
 | |
|         $gateways = DB::table('account_gateways')
 | |
|                         ->get(['id', 'config']);
 | |
|         foreach ($gateways as $gateway) {
 | |
|             DB::table('account_gateways')
 | |
|                 ->where('id', $gateway->id)
 | |
|                 ->update(['config' => Crypt::encrypt($gateway->config)]);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Reverse the migrations.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function down()
 | |
|     {
 | |
|         $gateways = DB::table('account_gateways')
 | |
|                         ->get(['id', 'config']);
 | |
|         foreach ($gateways as $gateway) {
 | |
|             DB::table('account_gateways')
 | |
|                 ->where('id', $gateway->id)
 | |
|                 ->update(['config' => Crypt::decrypt($gateway->config)]);
 | |
|         }
 | |
|     }
 | |
| }
 |