File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
prisma/postgresql-migrations/20250918182355_add_kafka_integration Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 11# 2.3.5 (develop)
22
3+ ### Fixed
4+
5+ * ** Kafka Migration** : Fixed PostgreSQL migration error for Kafka integration
6+ - Corrected table reference from ` "public"."Instance" ` to ` "Instance" ` in foreign key constraint
7+ - Fixed ` ERROR: relation "public.Instance" does not exist ` issue in migration ` 20250918182355_add_kafka_integration `
8+ - Aligned table naming convention with other Evolution API migrations for consistency
9+ - Resolved database migration failure that prevented Kafka integration setup
10+
311###
412
513# 2.3.4 (2025-09-23)
Original file line number Diff line number Diff line change 11-- CreateTable
2- CREATE TABLE "public ". " Kafka" (
2+ CREATE TABLE "Kafka " (
33 " id" TEXT NOT NULL ,
44 " enabled" BOOLEAN NOT NULL DEFAULT false,
55 " events" JSONB NOT NULL ,
@@ -11,7 +11,7 @@ CREATE TABLE "public"."Kafka" (
1111);
1212
1313-- CreateIndex
14- CREATE UNIQUE INDEX "Kafka_instanceId_key " ON " public " . " Kafka" (" instanceId" );
14+ CREATE UNIQUE INDEX "Kafka_instanceId_key " ON " Kafka" (" instanceId" );
1515
1616-- AddForeignKey
17- ALTER TABLE " public " . " Kafka" ADD CONSTRAINT " Kafka_instanceId_fkey" FOREIGN KEY (" instanceId" ) REFERENCES " public " . " Instance" (" id" ) ON DELETE CASCADE ON UPDATE CASCADE;
17+ ALTER TABLE " Kafka" ADD CONSTRAINT " Kafka_instanceId_fkey" FOREIGN KEY (" instanceId" ) REFERENCES " Instance" (" id" ) ON DELETE CASCADE ON UPDATE CASCADE;
You can’t perform that action at this time.
0 commit comments