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