chroma / go /coordinator /migrations /20231129183041.sql
badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame contribute delete
194 Bytes
-- Create "notifications" table
CREATE TABLE "public"."notifications" (
"id" bigserial NOT NULL,
"collection_id" text NULL,
"type" text NULL,
"status" text NULL,
PRIMARY KEY ("id")
);