engine = 'InnoDB'; $table->increments('id'); $table->string('email')->index()->nullable(); $table->string('template')->index()->nullable(); $table->integer('user_id')->unsigned()->nullable()->index(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('rainlab_user_mail_blockers'); } }