id(); $table->string('placeholder')->nullable(); // Used for work-in-progress options. $table->string('developer')->nullable(); // Somehow I can't make it work with a boolean. $table->string('developer:cmd')->nullable(); $table->string('developer:log')->nullable(); $table->string('api:endpoint')->nullable(); $table->string('telemetry')->nullable(); $table->string('telemetry:id')->nullable(); $table->timestamp('timestamp')->useCurrent()->onUpdate(null); }); Schema::dropIfExists('bpkey'); Schema::create('bpkey', function (Blueprint $table) {$table->id();$table->string('k')->nullable();$table->boolean('v')->nullable();$table->timestamp('timestamp')->useCurrent()->onUpdate(null);}); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('blueprint'); Schema::dropIfExists('bpkey'); } }