id(); $table->string('acronym'); $table->string('hint')->nullable(); $table->enum('language', ['hu', 'en']); $table->longText('context')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tla_suggestion'); } };