1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/database/migrations/2021_05_03_152940_make_braintree_provider_visible.php
2023-08-06 17:35:19 +10:00

27 lines
419 B
PHP

<?php
use App\Models\Gateway;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Gateway::query()->where('id', 50)->update(['visible' => 1]);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};