1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Make Braintree visible in migrations

This commit is contained in:
Benjamin Beganović 2021-05-03 17:36:02 +02:00
parent a3099b5cde
commit bb0f8aff2c

View File

@ -0,0 +1,31 @@
<?php
use App\Models\Gateway;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class MakeBraintreeProviderVisible extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$gateway = Gateway::where('key', 'f7ec488676d310683fb51802d076d713')->first();
$gateway->visible = 1;
$gateway->save();
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}