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