increments('id'); $table->string('class_name'); $table->bigInteger('user_id')->unsigned()->index(); $table->string('username'); $table->string('information')->nullable(); $table->string('description'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('actions'); } }