1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/database/migrations/2015_11_01_080417_encrypt_tokens.php
2015-11-01 20:21:11 +02:00

42 lines
936 B
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
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)]);
}
}
}