pixelfed/database/migrations/2021_10_13_002041_create_group_events_table.php
2024-07-09 23:16:05 -06:00

45 lines
1.1 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateGroupEventsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('group_events', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('group_id')->unsigned()->nullable()->index();
$table->bigInteger('profile_id')->unsigned()->nullable()->index();
$table->string('name')->nullable();
$table->string('type')->index();
$table->json('tags')->nullable();
$table->json('location')->nullable();
$table->text('description')->nullable();
$table->json('metadata')->nullable();
$table->boolean('open')->default(false)->index();
$table->boolean('comments_open')->default(false);
$table->boolean('show_guest_list')->default(false);
$table->timestamp('start_at')->nullable();
$table->timestamp('end_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('group_events');
}
}