chore: auto-commit task -

This commit is contained in:
MythEclipse
2026-06-02 17:33:19 +07:00
parent 1bc0b7c7bb
commit e0d54b7770
9 changed files with 3271 additions and 14 deletions
+20
View File
@@ -0,0 +1,20 @@
CREATE TABLE "sticker_cache" (
"name" text PRIMARY KEY NOT NULL,
"base64" text NOT NULL,
"mime_type" text NOT NULL,
"size" integer NOT NULL,
"fetched_at" bigint NOT NULL
);
--> statement-breakpoint
CREATE TABLE "text_analysis_cache" (
"text" text PRIMARY KEY NOT NULL,
"flags" text DEFAULT '[]' NOT NULL,
"source" text DEFAULT 'local' NOT NULL,
"analyzed_at" bigint NOT NULL,
"expires_at" bigint NOT NULL,
"hit_count" integer DEFAULT 0 NOT NULL
);
--> statement-breakpoint
CREATE INDEX "idx_sticker_cache_fetched_at" ON "sticker_cache" USING btree ("fetched_at");--> statement-breakpoint
CREATE INDEX "idx_text_analysis_cache_expires_at" ON "text_analysis_cache" USING btree ("expires_at");--> statement-breakpoint
CREATE INDEX "idx_text_analysis_cache_source" ON "text_analysis_cache" USING btree ("source");
File diff suppressed because it is too large Load Diff
+7
View File
@@ -43,6 +43,13 @@
"when": 1780218363791,
"tag": "0006_fix_text_analysis_cache_source",
"breakpoints": true
},
{
"idx": 7,
"version": "7",
"when": 1780396315249,
"tag": "0007_black_nova",
"breakpoints": true
}
]
}