increments('id'); $table->string('subject', 250)->nullable(); $table->longText('body')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('email_templates'); } }