lnbits paid articles added

This commit is contained in:
HolgerHatGarKeineNode
2023-03-14 11:58:03 +01:00
parent ea9f45e510
commit 509e252022

View File

@@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->json('lnbits')
->default('{"read_key":null,"url":null,"wallet_id":null}')
->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};