added things

This commit is contained in:
szabomarton
2025-03-10 13:58:21 +01:00
parent 33371852e0
commit c4f2c7fbcb
127 changed files with 20894 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?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('kategoriak', function (Blueprint $table) {
$table->id();
$table->string('nev')->unique();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('kategoriak');
}
};

View File

@@ -0,0 +1,33 @@
<?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('ingatlanok', function (Blueprint $table) {
$table->id();
$table->foreignId('kategoria')->constrained('kategoriak');
$table->text('leiras');
$table->date('hirdetesDatuma');
$table->boolean('tehermentes');
$table->integer('ar');
$table->string('kepUrl');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('ingatlanok');
}
};