--
-- Name: featureFlag; Type: TABLE; Schema: core; Owner: postgres
--
CREATE TABLE core."featureFlag" (
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
key text NOT NULL,
"workspaceId" uuid NOT NULL,
value boolean NOT NULL,
"createdAt" timestamp with time zone DEFAULT now() NOT NULL,
"updatedAt" timestamp with time zone DEFAULT now() NOT NULL
);
--
-- Name: featureFlag; Type: TABLE; Schema: core; Owner: postgres
--
CREATE TABLE core."featureFlag" (
id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
key text NOT NULL,
"workspaceId" uuid NOT NULL,
value boolean NOT NULL,
"createdAt" timestamp with time zone DEFAULT now() NOT NULL,
"updatedAt" timestamp with time zone DEFAULT now() NOT NULL
);