add members table

This commit is contained in:
fsociety
2024-09-29 18:21:09 +02:00
parent e76a60c600
commit c2f0014a8e
31 changed files with 1815 additions and 104 deletions

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('einundzwanzig_plebs', function (Blueprint $table) {
$table->unsignedInteger('application_for')->nullable();
$table->text('application_text')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('einundzwanzig_plebs', function (Blueprint $table) {
});
}
};