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