increments('id'); $table->string('slug', 23)->nullable(); $table->string('name', 30)->nullable(); $table->string('email', 23)->nullable(); $table->string('phone', 17)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('newsletters'); } }