2023-03-24 13:54:17 +00:00
|
|
|
<?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::create('teams', function (Blueprint $table) {
|
|
|
|
$table->id();
|
|
|
|
$table->string('name');
|
2023-06-16 13:01:58 +00:00
|
|
|
$table->string('description')->nullable();
|
2023-03-24 13:54:17 +00:00
|
|
|
$table->boolean('personal_team')->default(false);
|
2023-06-20 17:08:43 +00:00
|
|
|
$table->schemalessAttributes('smtp');
|
|
|
|
$table->schemalessAttributes('smtp_notifications');
|
|
|
|
$table->schemalessAttributes('discord');
|
|
|
|
$table->schemalessAttributes('discord_notifications');
|
2023-03-24 13:54:17 +00:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down(): void
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('teams');
|
|
|
|
}
|
|
|
|
};
|