id(); $table->timestamps(); $table->string('name',8)->unique(); $table->string('dnsdomain')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('domains'); } }