engine = 'InnoDB'; $table->charset = 'utf8'; $table->collation = 'utf8_unicode_ci'; $table->increments('id'); $table->dateTime('time')->nullable(); $table->string('username', 50)->nullable(); $table->string('host', 40)->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::drop('logging'); } }