annotations.sql 255 B

12345678910111213
  1. -- Table: public.annotations
  2. -- DROP TABLE public.annotations;
  3. CREATE TABLE IF NOT EXISTS public.annotations
  4. (
  5. id text NOT NULL,
  6. annotations xml,
  7. CONSTRAINT annotations_id_key UNIQUE (id)
  8. );
  9. GRANT ALL ON TABLE public.annotations TO current_user;