lecturer v4v

This commit is contained in:
Benjamin Takats
2023-01-24 15:07:18 +01:00
parent 4d6cce5dab
commit 6b2ea031a9
4 changed files with 77 additions and 6 deletions

View File

@@ -0,0 +1,34 @@
<?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('lecturers', function (Blueprint $table) {
$table->text('lightning_address')
->nullable();
$table->text('lnurl')
->nullable();
$table->string('node_id')
->nullable();
});
}
/**
* Reverse the migrations.
* @return void
*/
public function down()
{
Schema::table('lecturers', function (Blueprint $table) {
//
});
}
};