id(); $table->timestamps(); $table->integer('site_id')->unsigned(); $table->boolean('active')->default(false); $table->string('name',32); $table->string('file',32)->nullable(); $table->string('whitelabel_url', 256)->nullable(); $table->string('whitelabel_ns', 1024)->nullable(); $table->string('manage_url', 256)->nullable(); $table->foreign(['site_id'])->references(['id'])->on('sites'); $table->unique(['id','site_id']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('domain_registrars'); } };