feature(dashboard): add ability to filter out events by profile id and ip (#101)
This commit is contained in:
committed by
GitHub
parent
27ee623584
commit
f4ad97d87d
@@ -0,0 +1,5 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "projects" ADD COLUMN "cors" TEXT,
|
||||
ADD COLUMN "crossDomain" BOOLEAN NOT NULL DEFAULT false,
|
||||
ADD COLUMN "domain" TEXT,
|
||||
ADD COLUMN "filters" JSONB NOT NULL DEFAULT '[]';
|
||||
@@ -0,0 +1,9 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- The `cors` column on the `projects` table would be dropped and recreated. This will lead to data loss if there is data in the column.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "projects" DROP COLUMN "cors",
|
||||
ADD COLUMN "cors" TEXT[] DEFAULT ARRAY[]::TEXT[];
|
||||
@@ -80,6 +80,11 @@ model Project {
|
||||
organizationId String
|
||||
eventsCount Int @default(0)
|
||||
types ProjectType[] @default([])
|
||||
domain String?
|
||||
cors String[] @default([])
|
||||
crossDomain Boolean @default(false)
|
||||
/// [IPrismaProjectFilters]
|
||||
filters Json @default("[]")
|
||||
|
||||
events Event[]
|
||||
profiles Profile[]
|
||||
|
||||
Reference in New Issue
Block a user