prefix('fieldsets'), function (Blueprint $table) { $table->id(); $table->string('handle')->unique(); $table->jsonb('data'); $table->timestamps(); }); } public function down() { Schema::dropIfExists($this->prefix('fieldsets')); } };