id(); $table->string('name', 55); $table->string('description', 125)->nullable(); $table->jsonb('options'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('events'); } };