File size: 194 Bytes
287a0bc
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
-- Create "notifications" table
CREATE TABLE "public"."notifications" (
  "id" bigserial NOT NULL,
  "collection_id" text NULL,
  "type" text NULL,
  "status" text NULL,
  PRIMARY KEY ("id")
);