@penclipai/db 2026.703.0 → 2026.704.0-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
DROP
|
|
1
|
+
ALTER TABLE "plugin_entities" DROP CONSTRAINT IF EXISTS "plugin_entities_external_idx";--> statement-breakpoint
|
|
2
|
+
DROP INDEX IF EXISTS "plugin_entities_external_idx";--> statement-breakpoint
|
|
2
3
|
ALTER TABLE "plugin_entities" ADD COLUMN "company_id" uuid;--> statement-breakpoint
|
|
3
4
|
ALTER TABLE "plugin_job_runs" ADD COLUMN "company_id" uuid;--> statement-breakpoint
|
|
4
5
|
ALTER TABLE "plugin_logs" ADD COLUMN "company_id" uuid;--> statement-breakpoint
|
|
@@ -11,4 +12,4 @@ CREATE INDEX "plugin_entities_company_idx" ON "plugin_entities" USING btree ("co
|
|
|
11
12
|
CREATE INDEX "plugin_job_runs_company_idx" ON "plugin_job_runs" USING btree ("company_id");--> statement-breakpoint
|
|
12
13
|
CREATE INDEX "plugin_logs_company_idx" ON "plugin_logs" USING btree ("company_id");--> statement-breakpoint
|
|
13
14
|
CREATE INDEX "plugin_webhook_deliveries_company_idx" ON "plugin_webhook_deliveries" USING btree ("company_id");--> statement-breakpoint
|
|
14
|
-
ALTER TABLE "plugin_entities" ADD CONSTRAINT "plugin_entities_external_idx" UNIQUE NULLS NOT DISTINCT("company_id","plugin_id","entity_type","external_id");
|
|
15
|
+
ALTER TABLE "plugin_entities" ADD CONSTRAINT "plugin_entities_external_idx" UNIQUE NULLS NOT DISTINCT("company_id","plugin_id","entity_type","external_id");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@penclipai/db",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.704.0-canary.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"homepage": "https://github.com/penclipai/paperclip-cn",
|
|
6
6
|
"bugs": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"dist"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@penclipai/shared": "2026.
|
|
32
|
+
"@penclipai/shared": "2026.704.0-canary.1",
|
|
33
33
|
"drizzle-orm": "^0.45.2",
|
|
34
34
|
"embedded-postgres": "^18.3.0-beta.17",
|
|
35
35
|
"postgres": "^3.4.9"
|