increments('id'); $table->string('domain', 255); $table->enum('policy', ['none', 'may', 'encrypt', 'dane', 'dane-only', 'fingerprint', 'verify', 'secure']); $table->string('params', 255)->nullable(); $table->timestamps(); $table->unique(["domain"]); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tlspolicies'); } }