31 lines
722 B
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');
|
|
}
|
|
};
|