finish database, start controller
Build / Build-image (push) Failing after 8s

This commit is contained in:
2026-08-09 01:54:47 +02:00
parent 7bb26eeb43
commit c1e8daacff
7 changed files with 154 additions and 2 deletions
@@ -0,0 +1,31 @@
<?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('tla', function (Blueprint $table) {
$table->id();
$table->string('abbreviation');
$table->string('hint')->nullable();
$table->enum('language', ['hu', 'en']);
$table->date('used')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('tla');
}
};