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'); } };