create table public.cache (
  _id bigserial not null,
  key text not null,
  stringval text null,
  intval integer null,
  doubleval numeric null,
  boolval boolean null default false,
  _createdat timestamp with time zone null,
  _lastmodifiedat timestamp with time zone null,
  constraint cache_pkey primary key (_id),
  constraint cache_key_key unique (key)
) TABLESPACE pg_default;

CREATE POLICY "Enable all accesses for authenticated users" on "public"."cache"  TO authenticated USING (true) WITH CHECK (true);
