char('id', 8)->primary()->default(null); $table->string('domain'); $table->tinyInteger('active')->default(1); $table->string('extension'); $table->string('ns1')->nullable(); $table->string('ns2')->nullable(); $table->string('ns3')->nullable(); $table->unsignedBigInteger('provider_id')->default(9999); $table->date('owned_since')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('domains'); } }