39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
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("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");
|
|
}
|
|
};
|