prefix('taxonomy_terms'), function (Blueprint $table) { $table->id(); $table->string('site')->index(); $table->string('slug'); $table->string('uri')->nullable()->index(); $table->string('taxonomy')->index(); $table->jsonb('data'); $table->timestamps(); $table->unique(['slug', 'taxonomy', 'site']); }); } public function down() { Schema::dropIfExists($this->prefix('taxonomy_terms')); } };