id(); $table->unsignedTinyInteger('type'); $table->unsignedBigInteger('father_id')->nullable(); $table->string('email', 255)->unique(); $table->string('token', 64)->unique(); $table->dateTime('ttl'); $table->unsignedInteger('relation_limit'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('email_activations'); } }