Files
backend-umra/database/migrations/2025_08_31_160212_create_rooms_table.php

34 lines
844 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('rooms', function (Blueprint $table) {
$table->id();
$table->foreignId('hotel_id')->constrained()->cascadeOnDelete();
$table->string('name');
$table->string('floor');
$table->json('images')->nullable();
$table->unsignedTinyInteger('bed_count')->default(1);
$table->boolean('wide')->default(false);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('rooms');
}
};