events-venues/database/migrations/2024_07_26_073100_create_events_table.php

31 lines
722 B
PHP

<?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('events', static function (Blueprint $table) {
$table->id();
$table->foreignId('venue_id')->nullable()->constrained()->nullOnDelete();
$table->string('name', 255)->unique();
$table->date('event_date');
$table->string('poster', 255);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('events');
}
};