id(); $table->timestamps(); $table->string('command'); $table->string('nick')->nullable(); $table->text('params'); $table->text('tags'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('chat_logs'); } };