lightning_address

This commit is contained in:
Benjamin Takats
2023-01-18 18:27:04 +01:00
parent 36effe4791
commit c14926234f

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->text('lightning_address')
->nullable()
->change();
});
}
/**
* Reverse the migrations.
* @return void
*/
public function down()
{
//
}
};