Initial commit - Katica Bufe project
This commit is contained in:
38
database/migrations/2026_02_05_063649_tablaletrehoz.php
Normal file
38
database/migrations/2026_02_05_063649_tablaletrehoz.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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("kategoria", function(Blueprint $table){
|
||||
$table->unsignedBigInteger("id")->primary();
|
||||
$table->string("kategoriaNev");
|
||||
});
|
||||
Schema::create("forgalom", function(Blueprint $table){
|
||||
$table->unsignedBigInteger("id");
|
||||
$table->string("termek");
|
||||
$table->string("vevo");
|
||||
$table->foreignId("kategoriaId")->references("id")->on("kategoria");
|
||||
$table->string("egyseg");
|
||||
$table->integer("nettoar");
|
||||
$table->integer("mennyiseg");
|
||||
$table->boolean("kiadva");
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists("forgalom");
|
||||
Schema::dropIfExists("kategoria");
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user