id(); $table->binary('hash'); $table->string('generator'); $table->string('preset'); $table->boolean('race')->default(false); $table->boolean('mystery')->default(false); $table->string('seed'); $table->text('settings'); $table->string('status')->default('pending'); $table->text('error_detail')->nullable()->default(null); $table->timestamps(); $table->unique('hash'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('alttp_seeds'); } };