increments('id'); $table->integer('event_id')->nullable(); $table->string('name', 255)->nullable(); $table->string('email', 255)->nullable(); $table->integer('invited_by')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('event_invitations'); } }