prefix('taxonomies'), function (Blueprint $table) { $table->id(); $table->string('handle')->unique(); $table->string('title'); $table->jsonb('sites')->nullable(); $table->jsonb('settings')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists($this->prefix('taxonomies')); } };