first commit

This commit is contained in:
xayana
2025-12-03 17:51:50 +00:00
commit 8d681da7a1
104 changed files with 13883 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?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('table_hotels', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->text('name');
$table->text('description');
$table->text('address');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('table_hotels');
}
};