This commit is contained in:
Andras Bacsai
2023-06-16 15:01:58 +02:00
parent 66af4d98ce
commit b948457115
14 changed files with 167 additions and 42 deletions

View File

@@ -14,6 +14,7 @@ return new class extends Migration
Schema::create('teams', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('description')->nullable();
$table->boolean('personal_team')->default(false);
$table->schemalessAttributes('extra_attributes');
$table->timestamps();